You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
You would be surprized how many libraries ignore such corner cases.
Uploading large files using PUT (which is the only sane method) is painfull or impossible also on server side. They usually think large file is around 100MB. Most pythonic web servers never try uploading file having size over 2 GB.
But i am uploading/accepting at least tens of TB daily.... :) it really makes a difference to me.
if i read the code correctly,
it is not possible to make PUT request and stream data into it.
But that would be really nice to have.
Streaming by chunks of data or from file-like object is really a must for uploading large files...
The text was updated successfully, but these errors were encountered: