I am receiving a the error requests.exceptions.ChunkedEncodingError: ('Connection broken: IncompleteRead(0 bytes read)', IncompleteRead(0 bytes read))
from a server using the Request package in Python.
It is my understanding from the post How to tell the HTTP server to not send chunked encoding that one way around this is to tell the server not to send chunked encoding, specifically by specifying HTTP/1.0
in the request.
How do i go about doing this using the Requests package?