Re: Append zip files together, just get the binary data (in memory)

2008-01-15 Thread Neil Cerutti
On Jan 15, 2008 4:28 AM, John Machin <[EMAIL PROTECTED]> wrote: > On Jan 15, 9:58 am, "Diez B. Roggisch" <[EMAIL PROTECTED]> wrote: > > > Module StringIO is your friend. > > and cStringIO is your ? ... friend +1? -- Neil Cerutti <[EMAIL PROTECTED]> -- http://mail.python.org/mailman/listinfo/

Re: Append zip files together, just get the binary data (in memory)

2008-01-15 Thread John Machin
On Jan 15, 9:58 am, "Diez B. Roggisch" <[EMAIL PROTECTED]> wrote: > Module StringIO is your friend. and cStringIO is your ? -- http://mail.python.org/mailman/listinfo/python-list

Re: Append zip files together, just get the binary data (in memory)

2008-01-14 Thread BerlinBrown
On Jan 14, 5:58 pm, "Diez B. Roggisch" <[EMAIL PROTECTED]> wrote: > BerlinBrown schrieb: > > > Is it possible to just build the binary content of a zip file. I want > > to create the content in memory (e.g. return binary data) and then get > > those byte strings representing the zip file? Is that

Re: Append zip files together, just get the binary data (in memory)

2008-01-14 Thread Diez B. Roggisch
BerlinBrown schrieb: > Is it possible to just build the binary content of a zip file. I want > to create the content in memory (e.g. return binary data) and then get > those byte strings representing the zip file? Is that possible? > > Or could I possibly override functions in the zip class. >