Skip to main content

Mindee API helper library for Python

Project description

Mindee API helper library for Python

The full documentation is available here

Requirements

This library is officially supported on Python 3.7 to 3.10.

Install

Install from PyPi using pip, a package manager for Python.

pip install mindee

Don't have pip installed? Try installing it, by running this from the command line:

$ curl https://bootstrap.pypa.io/get-pip.py | python

Getting started with the Mindee API couldn't be easier. Create a Client and you're ready to go.

Create your Client

The mindee.Client needs your API credentials. You can either pass these directly to the constructor (see the code below) or via environment variables.

Depending on what type of document you want to parse, you need to add specifics auth token for each endpoint.

from mindee import Client

mindee_client = Client(
    expense_receipt_token="your_expense_receipt_api_token_here",
    invoice_token="your_invoice_api_token_here",
    passport_token="your_passport_api_token_here",
    license_plate_token="your_license_plate_api_token_here",
    raise_on_error=True
)

We suggest storing your credentials as environment variables. Why? You'll never have to worry about committing your credentials and accidentally posting them somewhere public.

Parsing methods

# Call the receipt parsing API and create a receipt object under parsed_data.receipt
parsed_data = mindee_client.parse_receipt("/path/to/file")

# Call the invoice parsing API and create an invoice object under parsed_data.invoice
parsed_data = mindee_client.parse_invoice("/path/to/file")

# If you have a mixed data flow of invoice and receipt, use financial_document class
# Call the invoice or receipt parsing API according to your input data type
# and create a FinancialDocument object under parsed_data.financial_document
parsed_data = mindee_client.parse_financial_document("/path/to/file")

# Call the passport parsing API and create a Passport object under parsed_data.passport
parsed_data = mindee_client.parse_passport("/path/to/file")

# Call the license_plates parsing API and create a CarPlate object under parsed_data.license_plate
parsed_data = mindee_client.parse_license_plate("/path/to/file")

Input data

You can pass your input file in three ways:

From file path

receipt_data = mindee_client.parse_receipt('/path/to/file', input_type="path")

From a file object

with open('/path/to/file', 'rb') as fp:
     receipt_data = mindee_client.parse_receipt(fp, input_type="file")

From a base64

receipt_data = mindee_client.parse_receipt(base64_string, input_type="base64", filename="receipt.jpg")

Project details


Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distribution

mindee-1.3.0.tar.gz (79.7 kB view details)

Uploaded Source

Built Distribution

mindee-1.3.0-py3-none-any.whl (90.8 kB view details)

Uploaded Python 3

File details

Details for the file mindee-1.3.0.tar.gz.

File metadata

  • Download URL: mindee-1.3.0.tar.gz
  • Upload date:
  • Size: 79.7 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.7.1 importlib_metadata/4.8.2 pkginfo/1.8.2 requests/2.25.1 requests-toolbelt/0.9.1 tqdm/4.62.3 CPython/3.8.12

File hashes

Hashes for mindee-1.3.0.tar.gz
Algorithm Hash digest
SHA256 6ba8cbff529af628ec639635dba487b495160aa0a6a4c4753a3a5de59f5f9a50
MD5 6c168cd9942f11f1d4c24e746ae86b86
BLAKE2b-256 e1cbd49b4e1a92456ff5d26d53de779659223a7dceffe7ebe78dd7fe6e6d479e

See more details on using hashes here.

File details

Details for the file mindee-1.3.0-py3-none-any.whl.

File metadata

  • Download URL: mindee-1.3.0-py3-none-any.whl
  • Upload date:
  • Size: 90.8 kB
  • Tags: Python 3
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.7.1 importlib_metadata/4.8.2 pkginfo/1.8.2 requests/2.25.1 requests-toolbelt/0.9.1 tqdm/4.62.3 CPython/3.8.12

File hashes

Hashes for mindee-1.3.0-py3-none-any.whl
Algorithm Hash digest
SHA256 a0bf51205de1e2bb1685927cefb795b509ff3b971f4e45496402106fad2ed202
MD5 d37e6d586cdff980d23127fc4d5b8266
BLAKE2b-256 6294705b59b0b58da3ce4e8f6e692b2d94277fb81626635fb0ffb11b9e0221bf

See more details on using hashes here.

Supported by

AWS AWS Cloud computing and Security Sponsor Datadog Datadog Monitoring Fastly Fastly CDN Google Google Download Analytics Microsoft Microsoft PSF Sponsor Pingdom Pingdom Monitoring Sentry Sentry Error logging StatusPage StatusPage Status page