Skip to main content

Add your description here

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.1.tar.gz (201.1 kB view details)

Uploaded Source

Built Distribution

automaited-0.1.1-py3-none-any.whl (7.9 kB view details)

Uploaded Python 3

File details

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

File metadata

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

File hashes

Hashes for automaited-0.1.1.tar.gz
Algorithm Hash digest
SHA256 57fe5732edcba93a3640934be71a8f33ff26b54160bf0c975d160e49bd17359d
MD5 c2664d65c358ed2fca900ebdc42a5abe
BLAKE2b-256 fe16757c343e9225f80aa4d6b74561de31dcbcc1ccca391d33e27fd2e6c322a9

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for automaited-0.1.1-py3-none-any.whl
Algorithm Hash digest
SHA256 86e30cf8d7a6f05cbd3a357c0eacb7cee6911e2e08b7705aaa090508ee289b65
MD5 3d8846c9ef1e4e88bb66a55dc19b217a
BLAKE2b-256 15f4ca5a8e23f269615ca25e9c409d34edac9d296bca5bbcfc52c7cf95bbe28d

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