Is it possible to make a zip archive and offer it to download, but still not save a file to the hard drive?
|
|
To trigger a download you need to set
If you don't want the file on disk you need to use
Optionally you can set
|
||
|
|
|
|
You'll be happier creating a temporary file. This saves a lot of memory. When you have more than one or two users concurrently, you'll find the memory saving is very, very important. You can, however, write to a StringIO object.
The "buffer" object is file-like with a 778 byte ZIP archive. |
||
|
|
|
|
Yes, you can use the zipfile module, zlib module or other compression modules to create a zip archive in memory. You can make your view write the zip archive to the |
|||
|
|
