-
-
Notifications
You must be signed in to change notification settings - Fork 33
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Question: Does it support to parse raw multipart/form-data bodies ? #68
Comments
At the moment it does not. PRs/discussion welcome though! |
Hi, sorry for slow response. I was just wondering if there is a module to increase the performance of parsing I'm currently experimenting, creating a web framework based on ASGI. To parse the I'm asking about this because I wanted to try using your module to see how it performs. ✌🏽 I suggest it might be better to follow what the |
So to confirm if I understood correctly, the callback function would dynamically decide (based on the field name) what to do with the contained data? If that's the case, that might not work as well in case someone uploads a huge file which would all end up being stored in memory. Streaming it directly to a file keeps the memory usage low. |
store data in |
I didn't mean that as a question. I meant it more in the sense of confirming what @aprilahijriyan was referring to. Unless you were referring to some other workflow, in which case maybe you could leave a bit more detail on how that process would work with storing data in a temp file? |
Does it support to parse form-data without knowing the "parameter name" like https://github.com/andrew-d/python-multipart ?
thank you
The text was updated successfully, but these errors were encountered: