Add an IEntityBodyProducer which produces bytes from a file-like object
[email protected] Fri, 11 Sep 2009 13:41:13 -0000
| Newsgroups | gmane.comp.python.twisted.bugs |
|---|---|
| Message-ID | <[email protected]> |
New submission from exarkun <[email protected]>: #886 introduces an HTTP client API along with a new interface, `IEntityBodyProducer`, for providing request bodies in a streaming manner. This interface isn't quite the same as `IProducer`, so existing producers don't quite work with it. For convenience, we should provide an implementation of this interface based on file-like objects (along the lines of `twisted.protocols.basic.FileSender`). This will be useful both for the obvious reason (sending files as request bodies), as well as as an example of how to implement these, and will also be usable with `StringIO` instances to send data constructed in memory (eg simple form posts). ---------- Type : enhancement Component: web Keywords : Priority : normal Nosy : ---------- http://twistedmatrix.com/trac/ticket/4017