python-pptx icon indicating copy to clipboard operation
python-pptx copied to clipboard

Create Open XML PowerPoint documents in Python

Results 225 python-pptx issues
Sort by recently updated
recently updated
newest added

I have observed an issue recently with the library where the generated PPT doesn't open in Google Slides and Microsoft Powerpoint You can have a look at the below example...

shortlist

I'm reaching out because I appreciate your work on python-pptx. As open-source security is a growing concern, I'd like to suggest some improvements based on the [OpenSSF Scorecard](https://www.github.com/ossf/scorecard) best practices:...

Hi, Is there a way to create sections as in PowerPoint slides bar and organize slides within them? I've opened the PPTX and see that sections are written on the...

slide

I had a look into what it might take to be able to use placeholders that are within SmartArt elements (as a workaround which may be easier than full support...

other

example usage: ``` shape = slide.add_shape(...) fill = shape.fill fill.solid() fill.fore_color.rgb = RGBColor(...) fill.transparency = 0.5 ```

DrawingML

add chart has incorrect return typing of a Chart object, when it returns a GraphicFrame

Tipos de inversiones from pptx import Presentation # Crear una presentación prs = Presentation() # Diapositiva 1: Título slide_1 = prs.slides.add_slide(prs.slide_layouts[0]) title = slide_1.shapes.title subtitle = slide_1.placeholders[1] title.text = "Mapa...

To edit some text i currently use pharagraphs and runs and apply all the styles i'm interested back. It would be interesting to have a way to just change the...

text

After adding speaker notes to the slides, the generate file is no longer able to open with Keynote. Is this a known bug? I would love my generated powerpoints to...