urllib is pain. `requests` or `httpx` for post request python wins.
Short example:
```python
import httpx
r = httpx.post("url", json={"data": "lol"})
```
`httpx` is async-friendly if you’re into that.
And yeah, docs overcomplicate everything. Just copy-paste and tweak.
Short example:
```python
import httpx
r = httpx.post("url", json={"data": "lol"})
```
`httpx` is async-friendly if you’re into that.
And yeah, docs overcomplicate everything. Just copy-paste and tweak.
