I need to upload a potentially huge plain-text file to a very simple wsgi-app without eating up all available memory on the server. How do I accomplish that? I want to use standard python modules and avoid third-party modules if possible.
|
|
wsgi.input should be a file like stream object. You can read from that in blocks, and write those blocks directly to disk. That shouldn't use up any significant memory. Or maybe I misunderstood the question? |
||||
|
|
|
If you use the cgi module to parse the input (which most frameworks use, e.g., Pylons, WebOb, CherryPy) then it will automatically save the uploaded file to a temporary file, and not load it into memory. |
||
|
|
|
|
Has python know how to deal with gzip annd zip file I would suggest you to compress your file (using a zip or gzip compliant application like 7-zip) on your client and then upload it to your server. Even better : write a script that automaticaly compress your file and upload it. This is possible with the standard library. |
||
|
|
