We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 21d829d commit 44c2d47Copy full SHA for 44c2d47
ppt2pdf/ppt2pdf_linux.py
@@ -3,9 +3,10 @@
3
import tqdm
4
import os
5
6
-PATH="INPUT FOLDER"
7
-extension="pptx" # or ppt
8
-files = [f for f in glob.glob(PATH+ "/**/*.{}".format(extension), recursive=True)]
+PATH = "INPUT FOLDER"
+# extension
+et = "pptx" # or ppt
9
+files = [f for f in glob.glob(PATH + "/**/*.{}".format(et),recursive =True)]
10
for f in tqdm.tqdm(files):
11
command = "unoconv -f pdf \"{}\"".format(f)
12
os.system(command)
0 commit comments