Re: [Tutor] Create zip files on the fly.

2005-07-07 Thread Kent Johnson
Negroup - wrote: > Hi, in my application I need to generate a zip file (via the great > zipfile module) and pass it from function A to function B. One way to > do it is create the object from function A and write it on filesystem > via close(). Then, function B will obtain the object reading the fi

[Tutor] Create zip files on the fly.

2005-07-07 Thread Negroup -
Hi, in my application I need to generate a zip file (via the great zipfile module) and pass it from function A to function B. One way to do it is create the object from function A and write it on filesystem via close(). Then, function B will obtain the object reading the file from disk. After this