Skip to main content

A simple API handler for Python

Project description

Acodis API Handler

This package provides easy to use python classes and functions to communicate with Acodis API (https://acodis.io). Acodis is an IDP solution that focuses on extracting and structuring complex documents (PDFs, Images)

Installation

pip install AcodisApiHandler

Usage

This package is particularly useful for programmatic access, since ACODIS' API structure requires a different user and password for every export step. Hence, if you have to manage multiple exports (e.g. multiple workflows), you just need to update the main class user and password attribute, and call the authenticate() method.

from AcodisApiHandler import AcodisApiHandler

# Set up your credentials
ACODIS_BASE_URL = "https://<YOUR-ACOIDS-INSTANCE-URL>/workbench/api/transaction"
ACODIS_USER = "<YOUR-EXPORT-USERNAME>"
ACODIS_PASSWORD = "<YOUR-EXPORT-PASSWORD>"

# Create an instance of the AcodisApiHandler class
handler = AcodisApiHandler(ACODIS_BASE_URL)

# Set the credentials
handler.user = ACODIS_USER
handler.password = ACODIS_PASSWORD

# Authenticate with the API
handler.authenticate()

handler.workflow(pdf_path="<PATH-TO-PDF-FILE>")

# The extraction result is an ElementTree XML object stored in the handler.result variable
# You can check it by:
print(handler.result)

Utils

This package also provides some utils to help you with the extraction process.

Extracting tagged data points

Tags are used to identify the data points that you want to extract from the document. This function will create a dictionary with the tags as keys and the extracted data as values.

from AcodisApiHandler import extract_tags

tags_list = ["example_tag_1", "example_tag_1", "example_tag_1"]

# Using the precviously created handler instance
tagged_data = extract_tags(handler, tags_list)

If we print the tagged_data variable we will get:

{
    "example_tag_1": "Example data 1",
    "example_tag_2": "Example data 2",
    "example_tag_3": "Example data 3"
}

License

MIT

Contributing

Pull requests are welcome. For major changes, please open an issue first to discuss what you would like to change.

Roadmap

  • Additional utils: parsing tables, extracting images, etc.
  • Add unit tests
  • Add batch processing and parallelization

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

AcodisApiHandler-0.3.5.tar.gz (9.1 kB view details)

Uploaded Source

Built Distribution

AcodisApiHandler-0.3.5-py3-none-any.whl (9.5 kB view details)

Uploaded Python 3

File details

Details for the file AcodisApiHandler-0.3.5.tar.gz.

File metadata

  • Download URL: AcodisApiHandler-0.3.5.tar.gz
  • Upload date:
  • Size: 9.1 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/4.0.2 CPython/3.11.2

File hashes

Hashes for AcodisApiHandler-0.3.5.tar.gz
Algorithm Hash digest
SHA256 b845a1cb6c8b366900bffc0fd3b4c07eed202967355f41a893990ae57e8722b1
MD5 91eb13b16ad29f443038da4ed0b9ad05
BLAKE2b-256 f01c74637e8fbc95b3be9cf7f82c95638dd1f6d529acdd2553b2b6a41cdf6b6c

See more details on using hashes here.

File details

Details for the file AcodisApiHandler-0.3.5-py3-none-any.whl.

File metadata

File hashes

Hashes for AcodisApiHandler-0.3.5-py3-none-any.whl
Algorithm Hash digest
SHA256 e114bf7cdc3c9074675fbe8718caba0ea016c5a922762ab2b530ca244769a66e
MD5 472b05e95b2c2c13a09b652e0ca25f79
BLAKE2b-256 cf4b8d085365157461dbf928b18b0dd684096d36203ad28d82478fa4e21b43d7

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