pptx

Installation
SKILL.md

PowerPoint Processing

Creating Presentations (Python)

from pptx import Presentation
from pptx.util import Inches, Pt

prs = Presentation()

# Add title slide
title_slide_layout = prs.slide_layouts[0]
slide = prs.slides.add_slide(title_slide_layout)
title = slide.shapes.title
subtitle = slide.placeholders[1]
title.text = "Hello, World!"
subtitle.text = "python-pptx demo"

# Add content slide
Related skills
Installs
148
GitHub Stars
1.1K
First Seen
Jan 20, 2026