Skip to content
Advertisement

Tag: chunked-encoding

Python HTTP server that supports chunked encoding?

I’m looking for a well-supported multithreaded Python HTTP server that supports chunked encoding replies. (I.e. “Transfer-Encoding: chunked” on responses). What’s the best HTTP server base to start with for this purpose? Answer Twisted supports chunked transfer encoding (API link) (see also the API doc for HTTPChannel). There are a number of production-grade projects using Twisted (for example, Apple uses it

Advertisement