SuperDoc SDK (CLI-backed) is a Python library for document parsing and data extraction, focusing on structured outputs from PDFs and images. It provides both high-level and low-level APIs for interacting with SuperDoc's cloud service. Current version 1.14.0, released monthly (requires Python >=3.9).
pip install superdoc-sdkNo compatibility data collected yet for this library.
Verified import paths — ran on the pinned version, not inferred.
Initialize client with API key and parse a PDF document.
Update imports: `from superdoc_sdk import SuperDocClient`.
Always specify `file_type` (e.g., 'pdf', 'image', 'docx').
Install the CLI via `pip install superdoc-cli` or add its location to PATH.
Replace `doc.parse()` with `doc.extract()`.
Set `SUPERDOC_API_KEY` in environment or pass `api_key` parameter.
Use `async with SuperDocClient(...) as client:` for async operations.
Access `result.status` instead of `result.state`.
No resource links recorded.