imsgj
Results
1
issues of
imsgj
Hi. The code in the [document](https://www.python-httpx.org/advanced/#:~:text=files%20%3D%20%7B%27upload%2Dfile%27%3A%20(None%2C%20%27text%20content%27%2C%20%27text/plain%27)%7D) does not work ``` import httpx files = {'upload-file': (None, 'text content', 'text/plain')} r = httpx.post("https://httpbin.org/post", files=files) print(r.text) ``` The error is ``` TypeError:...
bug
docs