I\'ve got a folder called: \'files\' which contains lots of jpg photographs. I\'ve also got a file called \'temp.kml\'. I want to create a KMZ file (basically a zip file) wh
You can use shutil
import shutil shutil.make_archive("simonsZip", "zip", "files")