python-pptx
python-pptx copied to clipboard
Create Open XML PowerPoint documents in Python
Updated version of https://github.com/scanny/python-pptx/pull/171 Will try to provide full coverage for existing tests and write new tests.
Hi! I've added an easy way to change the styling for both head and tail ends of a line. Access to these attributes will look like this: ``` line.tail_end =...
Hi! I've added access for both borders and span settings of table cells. Access to these attributes will look like this: ``` cell = table.cell(0,0) cell.grid_span = 2 top_border =...
Pretty much copied the lumOff and lumMod stuff to add alpha values in the OXML DrawingML stuff. Let me know what you think.
Bumps [jinja2](https://github.com/pallets/jinja) from 2.11.3 to 3.1.4. Release notes Sourced from jinja2's releases. 3.1.4 This is the Jinja 3.1.4 security release, which fixes security issues and bugs but does not otherwise...
Hi, This is a really minor one, but would really help when debugging issue and comparing the generated xml. The code has a mix of single and double quotes for...
Is there a way to add a textbox to a layout? ``` prs = Presentation("filename.pptx") for layout in prs.slide_layouts: textbox = layout.shapes.add_textbox() ``` Gives me `AttributeError: 'LayoutShapes' object has no...
I would like to generate a chart whose series are a subset of the excel data behind it. All the data would be available in the excel data behind the...
Is there possibility to include water fall chart under XL_CHART_TYPE 