I'm working with PPTX files in Python, and I need to extract slides grouped by their sections. I'm using the python-pptx library, which works well for general slide manipulation, but it doesn't seem to support sections directly.
So far, I've been able to access individual slides and their content with python-pptx, but I haven’t found any built-in way to get section information (start/end slides for each section). I was hoping there would be an attribute or method in python-pptx to access sections directly, but it seems like this functionality isn’t available.
Ideally, I was expecting python-pptx to provide a way to access sections similarly to how PowerPoint Interop works on Windows. I would like to get a list of sections and then access the slides within each section.
Does anyone know if there's a way to access sections and their slides with python-pptx? If it's not possible, are there any alternative libraries or methods that work in a Linux environment?