Python OCR SDK
Mindee API Helper Library for Python
Quick Start
pip install mindeeLoading a File and Parsing It
from mindee import Client, product, PathInput
# Init a new client
mindee_client = Client(api_key="my-api-key")
# Load a file from disk
input_source = PathInput("/path/to/the/file.ext")
# Parse the document as an invoice by passing the appropriate type
result = mindee_client.parse(product.InvoiceV4, input_source)
# Print a brief summary of the parsed data
print(result.document)Additional Options
Further Reading
License
Last updated
Was this helpful?

