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

Hello! Sometimes we may need to customize the Master Slide to provide a really custom presentation, changing the background, a client's logo, include some fixed text, etc. Although we can...

Include: - Combination charts (charts with multiple chart types) - Secondary value axis - Chart and axis titles formatting beyond text content - Data point formatting - Trendlines - Error...

It appears that when extracting slide notes, the library misses out a couple of slide after slide no 20. This seems a known bug due to XML parsing? This occurs...

This PR provides alternative text support with test coverage, and unlike previous PR #512, it only provides a high-level property. There was a previous unmerged PR for older versions. See...

Office 2016 introduced several new types of charts that are currently not supported by python-pptx: Waterfall, Histogram, Pareto, Box & Whisker, Treemap and Sunburst. The XMLSchema for these chart types...

I am developing a PowerPoint Add-in using the Office JavaScript API. I want to apply a PowerPoint template (POTX or PPTX) to the user’s current presentation without adding or replacing...

I was trying to insert a slide in an existing presentation, but it inserts only at the end. I even tried to slide the presentation and adding the slides to...

import zipfile with zipfile.ZipFile('/mnt/data/presentation.zip', 'w') as zipf: zipf.write(simple_pptx, 'Presentation.pptx')

5

1 comment

from PyPDF2 import PdfReader from pptx import Presentation from pptx.util import Inches, Pt from pptx.enum.text import PP_ALIGN from pptx.dml.color import RGBColor import io import os # المسار إلى الملف pdf_file...