Hello,
Does anyone know how to unzip and zip files in python tool? Here is the related Alteryx community question about updating a PowerPoint by modifying XML file.
1. unzip PowerPoint
How can we extract PowerPoint using a Python tool?
2. zip files (_rels, docProps, ppt, and [Content_Types].xml)
After extracting the PowerPoint and modifying some xml files, I would like to zip the files again.

from ayx import Alteryx
import zipfile
with zipfile.ZipFile('C:/Temp/PowerPoint test/DELETE_modified.zip', 'w', compression = zipfile.ZIP_DEFLATED) as my_zip:
my_zip.write('C:/Temp/PowerPoint test/DELETE_original/_rels')
my_zip.write('C:/Temp/PowerPoint test/DELETE_original/docProps')
my_zip.write('C:/Temp/PowerPoint test/DELETE_original/ppt')
my_zip.write('C:/Temp/PowerPoint test/DELETE_original/[Content_Types].xml')Error:
ValueError: ZIP does not support timestamps before 1980
I removed the last line (...[Content_Types].xml) and ran the workflow to test. It created zip file, but the folders were empty.
