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 had to implement this to set strikethrough property in one of my projects. It does not fully implement the definition in OpenXML spec, but that is by design, to...

Is it possible to define one function and run it on click ?

Hello, I'm trying to remove all movies on each slide with the following: ```python def remove_movie(file_path: str): prs = pptx.Presentation(file_path) for slide in prs.slides: for shape in slide.shapes: if type(shape)...

In official document, row_idx & col_idx attributes are mentioned in [A few snippets that might be handy](https://python-pptx.readthedocs.io/en/latest/user/table.html#a-few-snippets-that-might-be-handy) section. But unfortunately, when I tried to use the attribute, the python only...

Hi, I'm trying to reproduce shapes in a PPTX file, but I'm encountering an issue with connectors. Specifically, it seems that the connector type is defined within an XML tag,...

config: OS: - NAME="Debian GNU/Linux" - VERSION_ID="11" - VERSION="11 (bullseye)" Python: - 3.7.13 python-pptx : - python-pptx==0.6.21 I'm trying to embed a python pptx process into a docker container for...

I'm trying to make a pptx parser script that gives bounding boxes around every part of the slide and label it (Text, Title, List, Table, Figure...). To check my output...

as the title, i have a slide with transition is 0.5 and i want to edit it (to 0.25). How can i do that with pptx python. Thanks

I find it very unpleasant in complex, living documents to work with the idx of a shape, because it always requires a map of idx to the shape. The signature...