Lines Matching refs:MultipartEncoder
23 The main attraction is a streaming multipart form-data object, ``MultipartEncoder``.
28 from requests_toolbelt import MultipartEncoder
31 m = MultipartEncoder(
45 from requests_toolbelt import MultipartEncoder
48 m = MultipartEncoder(fields={'field0': 'value', 'field1': 'value'})
109 when passing an instance of the ``MultipartEncoder``. This is fixed in later
146 …- Add stateless solution for streaming files by MultipartEncoder from one host to another (in chun…
156 - Fix bug when ``MultipartEncoder`` is asked to encode zero parts
164 - Fix "oject" to "object" in ``MultipartEncoder``
368 - The ``MultipartEncoder`` now accepts exactly the same format of fields as
396 - The ``MultipartEncoder`` will now allow users to upload files larger than
399 - The ``MultipartEncoder`` will now accept empty unicode strings for form
413 - Complete rewrite of ``MultipartEncoder`` fixes bug where bytes were lost in
429 - ``MultipartEncoderMonitor`` wraps an instance of the ``MultipartEncoder``
440 - Add ability to tell ``MultipartEncoder`` which encoding to use. By default
445 - Fix #9 - Fix ``MultipartEncoder#to_string`` so that it properly handles file
462 - Add initial implementation of the streaming ``MultipartEncoder``