how to include a picture with the url in powerpoint (pptx-python) code example
Example: add image pptx python
from pptx import Presentation
import os
prs = Presentation()
slide = prs.slides.add_slide(prs.slide_layouts[8])
placeholder = slide.placeholders[1]
picture = placeholder.insert_picture('001.png')
prs.save("ESEMPIO.pptx")
os.startfile("ESEMPIO.pptx")