11 lines
299 B
Python
11 lines
299 B
Python
import sys
|
|
out = r"D:\F\NewI\opencode\daily-workspace\temp\check_pptx_out.txt"
|
|
try:
|
|
import pptx
|
|
result = "pptx available: " + pptx.__version__
|
|
except ImportError as e:
|
|
result = "pptx NOT available: " + str(e)
|
|
with open(out, "w", encoding="utf-8") as f:
|
|
f.write(result)
|
|
print(result)
|