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

![untitled](https://user-images.githubusercontent.com/8817120/33457698-fb549dc4-d5e8-11e7-935d-25f242fe1ca2.png) I need a combo chart which has both line and column plot like the picture showing above Based on the official website, it looks like it's impossible on API...

I want to attach comments to slides and shapes as mentioned [here](https://stackoverflow.com/questions/52493362/inserting-comments-in-presentation-using-python)

As discussed on the mailing group (https://groups.google.com/forum/?hl=en#!topic/python-pptx/YJBzJznTTHw), there are some potential uses for replacing an image with a new one. [Think "refreshing" a PPT with updated images.] Some working code...

image

Guys, any tips on how to add a hidden slide to a presentation or make one of its slides become hidden. Is it possible to do that with python-pptx, or...

When there is a pptx that is password protected, create a keyword argument for passing the password to the opener so that you can work with an encrypted file.

@scanny is this project dead? Are you intending to continue active management of this project? Is there a way we can improve issue resolution and PR resolution? I use this...

I'm trying to develop the program to replace the existing image with new image in existing ppt. So I have found the code made by @kodonnell, @scanny . This is...

https://github.com/scanny/python-pptx/issues/86 Added methods for adding and deleting row/column in _RowCollection and _ColumnCollection classes.

So i'm trying to set a red color to negative bars (positives in blue). With this code: ``` point = plot.series[0].points[i] fill = point.format.fill fill.solid() fill.fore_color.rgb = RGBColor(243, 93, 93)...

could you add some save_as option for Picture class or Image class? Thanks!