Module: objects/pptxobject.py

Purpose:

This module provides the ‘PPTX Document’ object structure into which MS PowerPoint documents are parsed into for transport and onward use.

Platform:

Linux/Windows | Python 3.10+

Developer:

J Berendt

Email:

development@s3dev.uk

Comments:

n/a

class DocPPTX[source]

Bases: _DocBase

Container class for storing data parsed from a PPTX file.

property slides: list[SlideObject]

A list of containing an object for each slide in the document.

Tip

The slide number index aligns to the slide number in the PPTX file.

For example, to access the SlideObject for side 42, use:

slides[42]