Spaces:
Running
Running
| """ | |
| Dockling Parser - A multiformat document parsing module using Docling | |
| """ | |
| __version__ = "0.1.0" | |
| from .parser import DocumentParser | |
| from .types import ParsedDocument, DocumentMetadata | |
| from .exceptions import ParserError | |
| __all__ = ["DocumentParser", "ParsedDocument", "DocumentMetadata", "ParserError"] |