2
votes
3answers
211 views
Zipping dynamic files in App Engine (Python)
Hello!
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 …
2
votes
3answers
441 views
How do I set permissions (attributes) on a file in a zip file using Python’s ZipFile module?
When I extract files from a zip file created with the Python zipfile module, all the files are not writeable, read only etc.
The file is being created and extracted under Linux and Python 2.5.2.
As …
2
votes
3answers
575 views
Set permissions on a compressed file in python
I have a file test.txt that is inside a zip archive test.zip. The permissions on test.txt are out of my control when it's compressed, but now I want them to be group-writeable. I am extracting the …
1
vote
2answers
47 views
detecting binary files and character encodings in zipfiles
When reading zipfiles (using Java ZipInputStream or any other library) from an unknown source is there any way of detecting which entries are "character data" (and if so the encoding) or "binary …
1
vote
1answer
51 views
What would cause a zip file to not be recognized on Google App Engine’s when it reads properly in my local GAE sdk
My code executes successfully when I run it locally, but when I upload it to GAE and attempt to run it throws me a BadZipfile: File is not a zip file, or ends with a comment
raw_file = …
1
vote
2answers
164 views
Randomly accessing a compressed file without using ZipFile (since ZipFile has a major bug).
I know, I know, who would want to compress or uncompressed large files in java. Completely unreasonable. For the moment suspend disbelief and assume I have a good reason for uncompressing a large zip …
1
vote
6answers
403 views
Why I get an Exception on opening an empty ZIP-file with java.util.zip.ZipFile?
I want to open a ZIP-file, that have no entries with java.util.zip.ZipFile. But on the constructor I get the following exception: 'java.util.zip.ZipException: error in opening zip file'. How can I …
0
votes
2answers
65 views
Extract files with invalid characters in filename with Python
I use python's zipfile module to extract a .zip archive (Let's take this file at http://img.dafont.com/dl/?f=akvaleir for example.)
f = zipfile.ZipFile('akvaleir.zip', 'r')
for fileinfo in …
0
votes
3answers
95 views
extracting contents of ZipFile entries when read from byte[] (Java)
I have a zip file whose contents are presented as byte[] but the original file object is not accessible. I want to read the contents of each of the entries. I am able to create a ZipInputStream from a …
0
votes
3answers
142 views
What is the byte signature of a password-protected ZIP file?
I've read that ZIP files start with the following bytes:
50 4B 03 04
Reference: http://www.garykessler.net/library/file_sigs.html
Question: Is there a certain sequence of bytes that indicate a ZIP …
0
votes
2answers
86 views
Confused about making a CSV file into a ZIP file in django
I have a view that takes data from my site and then makes it into a zip compressed csv file. Here is my working code sans zip:
def backup_to_csv(request):
response = …
0
votes
1answer
202 views
Python 2.6 - Upload zip file - Poster 0.4
Hi Folks,
I came here via this question:
http://stackoverflow.com/questions/68477/send-file-using-post-from-a-python-script
And by and large it's what I need, plus some additional.
Besides the …
0
votes
2answers
125 views
ZipFile complains, is there a way around using the zipfile module?
Hi,
I am trying to decompress some MMS messages sent to me zipped. The problem is that sometimes it works, and others not. And when it doesnt work, the python zipfile module complains and says that …
