Python HTTP server that supports chunked encoding?

后端 未结 4 814
醉话见心
醉话见心 2021-01-12 08:32

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

4条回答
  •  悲&欢浪女
    2021-01-12 09:05

    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 for the iCalendar server in Mac OS X Server), so it's quite well supported and very robust.

提交回复
热议问题