multipart
multipart copied to clipboard
Multipart parser for Python 3
fixes #34
Turns out sometimes CONTENT_LENGTH is ""
Remove IO.
So I'm thinking through how to implement a version of this without any io. Some initial thoughts: A multipart parser is the wrong layer at which to try to control...
There is no real (technical or logical) difference between files and forms but a 'filename' attribute. Both can be larger than mem_limit and contain binary data. The parser should return...
MultipartPart() instances should be usable as strings but throw an exception if they are to big to fit into memory.
It is no problem if you want to just close this, or ignore it: I appreciate that multipart is really quite old, and by now so are these changes to...
This PR adds support for Gzip encoded field data. Happy to discuss better ways of implementing something like this (which there likely is). Apologies if I haven't followed any processes,...
I would ultimately like a drop in replacement for cgi.py, but that is later, first there is this. There is an error I am receiving while using multipart and Apache2...
removed line that read 1 next character from the `stream` and using `CONTENT_LENGTH` to read the content of the `wsgi.input` or `stream` variable. If the `CONTENT_LENGTH` is more than the...
I was poking around my `.venv` folder and noticed that this library includes a lot of test data in the published package, which is weird because these files aren't in...