mirror of
https://github.com/Unstructured-IO/unstructured.git
synced 2025-08-30 19:56:41 +00:00

This refactor solves a problem or two, the big one being recursing into group-shapes to get all shapes on the slide, but mostly lays the groundwork to allow us to refine further aspects such as list-item detection, off-slide shape detection, and image-capture going forward.
6 lines
154 B
Python
6 lines
154 B
Python
from typing import IO, Union
|
|
|
|
import pptx.presentation
|
|
|
|
def Presentation(pptx: Union[str, IO[bytes], None] = None) -> pptx.presentation.Presentation: ...
|