pptx merge

python-pptx info

Does python-pptx support saving a file as pdf?

python-pptx doesn’t support saving as PDF and it’s very unlikely it ever will. The reason is that saving as a PDF involves rendering the PowerPoint file (.pptx) and the focus of python-pptx is on reading and writing the .pptx file format.
https://stackoverflow.com/questions/26365330/does-python-pptx-support-saving-a-file-as-pdf

Is it possible to combine two or more powerpoints using python-pptx?
https://stackoverflow.com/questions/60849601/is-it-possible-to-combine-two-or-more-powerpoints-using-python-pptx

I was able to achieve this by using python and win32com.client. However, this doesn’t work quietly. What I mean is that it launches Microsoft PowerPoint and opens input files one by one, then copies all slides from an input file and pastes them to an output file in a loop.

https://stackoverflow.com/questions/46205450/how-can-i-combine-two-presentations-pptx-into-one-master-presentation/66752002#66752002