up vote 3 down vote favorite
2
share [g+] share [fb]

Is there anyway I can zip dynamically generated content, such as a freshly rendered html template, into a zip file using zipfile?

There seem to be some examples around for zipping static content, but none for zipping dynamic ones. Or, is it not possible at all?

One more question: Is it possible to create a zip file with a bunch of sub-folders inside it?

Thanks.

link|improve this question
feedback

3 Answers

up vote 3 down vote accepted

You can add whatever you want to a zip file using ZipFile.writestr():

my_data = "<html><body><p>Hello, world!</p></body></html>"
z.writestr("hello.html", my_data)

You can also use sub-folders using / (or os.sep) as a separator:

z.writestr("site/foo/hello/index.html", my_data)
link|improve this answer
You guys rock! Thanks a lot. – checker659 Jun 8 '09 at 11:09
feedback

The working code: (for app engine:)

output = StringIO.StringIO()
z = zipfile.ZipFile(output,'w')
my_data = "<html><body><p>Hello, world!</p></body></html>"
z.writestr("hello.html", my_data)
z.close()

self.response.headers["Content-Type"] = "multipart/x-zip"
self.response.headers['Content-Disposition'] = "attachment; filename=test.zip"
self.response.out.write(output.getvalue())

Thanks again to Schnouki and Ryan.

link|improve this answer
feedback

In addition to Schnouki's excellent answer, you can also pass ZipFile a file-like object, such as one created by StringIO.StringIO.

link|improve this answer
Thanks Ryan! _ – checker659 Jun 8 '09 at 11:10
If you're using Python 3, it needs to be io.BytesIO (StringIO module is gone, and zipfile expects a bytes buffer) – Tim Pietzcker Jun 8 '09 at 11:36
1  
Oops, just realized that this is about App Engine. You should probably ignore my last comment :), sorry. – Tim Pietzcker Jun 8 '09 at 11:37
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.