mirror of
https://github.com/Unstructured-IO/unstructured.git
synced 2025-07-25 18:05:19 +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
152 B
Python
6 lines
152 B
Python
from typing import IO, Optional, Union
|
|
|
|
import docx.document
|
|
|
|
def Document(docx: Optional[Union[str, IO[bytes]]] = None) -> docx.document.Document: ...
|