Tag: api
-
Handling requests with Chunked Transfer Encoding in Python with Apache/mod_wsgi and uWSGI.
What is Chunked Transfer Encoding? Chunked Transfer Encoding is a method introduced in HTTP 1.1 for sending data as a series of successive chunks. The Content-Length header is not set, therefore nor the sender nor the receiver need to know the size of the entire request beforehand. This allows the sender to start transmitting without buffering the entire…