Skip to main content

The official Python library for the automaited API

Project description

automaited Python API library

The automaited Python library provides convenient access to the automaited REST API from any Python 3.10+ application. The library includes type definitions for all request params and response fields, and offers both synchronous and asynchronous clients powered by httpx.

Installation

[!IMPORTANT] The document extraction service is currently in a closed beta.

# install from PyPI
pip install automaited

Usage

Define the target model you want to populate and pass it with the PDF that you want to process into the .extract_model() method. Here is an example:

from datetime import date
from pydantic import Field, BaseModel
from automaited import DocExtClient
# from automaited import AsyncDocExtClient

class Article(BaseModel):
    article_number: str = Field(..., description="Typically alphabetical or alphanumerical.")
    description: str = Field(..., description="Description of the item.")
    quantity: float = Field(..., description="Number of pieces.")

class PurchaseOrder(BaseModel):
    customer_name: str = Field(..., description="Examples: Kaladent Inc., Henkel GmbH")
    order_number: str = Field(..., description="The purchase order number.")
    order_date: date = Field(..., description="The purchase order date.")
    items: list[Article] = Field(default_factory=list, description="List of all ordered articles.")

client = DocExtClient(API_KEY="TEST_BETA:you@company.com") # Replace the email with yours. As soon as we are out of beta you will receive a proper API key for production.
result: PurchaseOrder = client.extract_model(PurchaseOrder, "./po.pdf") # automaited.dev/samples
print(result)

You can download a sample PDF here: automaited.dev/samples If you want to learn more about how to define target models, just take a look at the pydantic docs

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

automaited-0.1.4.tar.gz (201.4 kB view details)

Uploaded Source

Built Distribution

automaited-0.1.4-py3-none-any.whl (8.3 kB view details)

Uploaded Python 3

File details

Details for the file automaited-0.1.4.tar.gz.

File metadata

  • Download URL: automaited-0.1.4.tar.gz
  • Upload date:
  • Size: 201.4 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: uv/0.4.25

File hashes

Hashes for automaited-0.1.4.tar.gz
Algorithm Hash digest
SHA256 5e3b27bb5729cd2d50810061c514974bb49efb9e3caf1799f013995b99ef8399
MD5 a6d847d5fde154b516e53415e31aa98a
BLAKE2b-256 35cfdac27c90b1e25bce8bc8b07aa43457a94a0d9e1d0b2ad3e83d44d6669195

See more details on using hashes here.

File details

Details for the file automaited-0.1.4-py3-none-any.whl.

File metadata

File hashes

Hashes for automaited-0.1.4-py3-none-any.whl
Algorithm Hash digest
SHA256 7175702ff2dc322db5c545f2e0d0d4c7d78de88ced926d0f77e85f7b05b37910
MD5 864c23a996e642e0fc89f16958c249dd
BLAKE2b-256 db1a6ee72d1e8991b99a8779283ebd18fd2a00925ef17f4f6c3ed11c582a4542

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