Python
Create Service : Make Images From PDF 2
We have to create zip file from output folder. After that users can download the result. Install zipfile module for python. pip install zipfile36 Use it in our python script to generate zip file. import sys, fitz # import the bindings if sys.version_info >= (3, 6): import zipfile else: import Read more…