Skip to content
Advertisement

Using Python to add a list of files into a zip file

I want to write a script to add all the ‘.py’ files into a zip file.

Here is what I have:

JavaScript

However it gives an error:

JavaScript

so seems the file names given is not correct.

Advertisement

Answer

You need to pass in the compression type as a keyword argument:

JavaScript

Without the keyword argument, you are giving ZipFile.write() an integer arcname argument instead, and that is causing the error you see as the arcname is being normalised.

Advertisement