I am trying to create 1000s of powerpoint presentations. I am using python pptx to achieve that. So far so good, but I dont like the slide size which is by default 4:3. Can I create a template slide(with custom formatting of slide size and default icons) and use that in all powerpoints that I am creating?
If yes can someone help me out with the process ? Generally I use
blank_slide_layout = prs.slide_layouts[6]
Slide = prs.slides.add_slide(blank_slide_layout)
Hope their will be a way to access the saved template with
prs.Slides.add_slide(custom_template_1)
Thanks in advance