Search
 
SCRIPT & CODE EXAMPLE
 
CODE EXAMPLE FOR PYTHON

compress excel file in python

#!/usr/bin/env python3

import zipfile

zip_file = zipfile.ZipFile('file_name.zip', 'w')
zip_file.write('/tmp/hello.txt')
zip_file.close()
Source by stackoverflow.com #
 
PREVIOUS NEXT
Tagged: #compress #excel #file #python
ADD COMMENT
Topic
Name
8+5 =