Metadata-Version: 2.4
Name: dococr-python-sdk
Version: 1.0.0
Summary: Official Python SDK for the DocOCR API
Author-email: DocOCR <support@dococr.in>
License-Expression: MIT
Project-URL: Documentation, https://dococr-api.onrender.com/dashboard
Classifier: Programming Language :: Python :: 3
Classifier: Typing :: Typed
Requires-Python: >=3.9
Description-Content-Type: text/markdown
Requires-Dist: httpx<1,>=0.27

# DocOCR Python SDK

```bash
pip install dococr
```

```python
from dococr import OCRClient

client = OCRClient(api_key="sk_test_xxx")
result = client.extract("invoice.jpg", language="en")
print(result.text, result.request_id)
```

Inputs may be a file path, bytes, a binary file object, or an HTTPS URL. Use `AsyncOCRClient` in async applications. Keep live keys in environment variables and never commit them.
