Skip to main content

Official Impira Python SDK

Project description

Impira Python SDK

Impira enables you to get everything you need from your PDFs, scanned documents, images, and more — with the help of machine learning. This API allows you to access Impira programatically through Python.

NOTE: This SDK is currently under active development and is likely to break backwards compatibility between point releases. We will update this disclaimer when this changes.

Full documentation

Below is an abbreviated set of documentation to help you get started. You can visit the full documentation by visiting the Impira SDK docs.

Requirements

This SDK is tested with Python 3.8+ on Mac OS X and Linux systems. We have users using Windows as well; however, this scenario is not tested automatically. Please reach out if you run into any issues on Windows or another platform.

Installation

You can install the Impira Python SDK directly through pip:

$ pip install impira

Development mode

If you would like to install the SDK to develop locally, you can run the following:

$ git clone git@github.com:impira/impira-python.git
$ cd impira-python
$ make develop

This will create a virtualenv locally and install the library to it in a manner that automatically updates as you change the source code.

Overview

The Impira Python SDK includes utilities to upload and label files, insert and update data, and query data. The core abstraction is the Impira object which represents an authenticated connection to your organization. The SDK makes heavy use of the pydantic library to automatically build up and validate function arugments.

Authenticating

To connect to an org, you simply instantiate the Impira object with your organization's name and API token. You can find your organization's name in the URL you visit to access Impira. For example, when you login, if the URL is https://app.impira.com/o/acme-corp-1a23/collections, then your organization's name is acme-corp-1a23. For instructions on obtaining an API token, please visit the Impira docs. For security reasons, we highly recommend storing both the organization name and API key in configuration or environment variables, not directly in the code itself. For the purpose of these examples, we will use the environment variables IMPIRA_ORG_NAME and IMPIRA_API_KEY.

from impira import Impira
import os

impira_api = Impira(os.environ["IMPIRA_ORG_NAME"], os.environ["IMPIRA_API_KEY"])

When you instantiate the Impira API, it will automatically issue a ping request to validate your credentials and raise an InvalidRequest exception if it fails. You can disable this behavior by passing ping=False to the constructor.

Referencing a collection

Many function calls in the API reference a collection_id parameter. This id can be found by navigating to a collection in the application, and copying the identifier after fc. For example, for a collection at a URL like https://app.impira.com/o/acme-corp-1a23/fc/07b71143a26b7163, the collection_id is 07b71143a26b7163.

Uploading

To upload one or more files, you must provide at a minimum a name and path (either local or a URL) for each file. The specification is defined in the FilePath type. You can also optionally specify a collection_id or None to upload the file globally (to "All files").

# Upload a file on your local machine
uids = impira_api.upload_files(collection_id, [
    {"name": "foo.pdf", "path": "/Users/me/Desktop/foo.pdf"}
])
                                             
# Upload multiple files by specifying their URLs
uids = impira_api.upload_files(collection_id, [
    {"name": "foo.pdf", "path": "http://website.com/foo.pdf"},
    {"name": "bar.pdf", "path": "http://website.com/bar.pdf"},
])

The uids variable is a list with a uid for each file. A file's uid is its unique identifier throughout the system. A file that belongs to more than one collection will have the same uid in each. You can also optionally specify your own uid while uploading a file. If two files have the same uid, the system will automatically replace the former with the latter, effectively versioning the file. For more information on uploading files, visit the Upload API docs.

Polling for results

Impira's API is asynchronous, meaning that uploading files and retrieving predictions from them occur in two separate API requests. While there are many advanced ways to query for data using IQL, the SDK offers a simple poll_for_results() method that allows you to wait for results to be available for your uploads. Using the uids returned from upload_files() (as demonstrated above), you can simply run something like

for row in impira_api.poll_for_results(collection_id, uids):
    print(row)

to retrieve each prediction. Note that poll_for_results() returns a generator, so you must iterate through its output to retrieve each result.

Running IQL queries

You can run arbitrary IQL queries through the API by simply invoking the query() method. The response is exactly the same format as the read API and the SDK also supports poll mode (by passing the mode="poll" argument). For example,

response = impira_api.query(
    "@`file_collections::%s`[uid] highest:Uploaded limit:10" % (collection_id)
)
last_10_uids = [row["uid"] for row in response["data"]]

will retrieve the uid of each of the last 10 files uploaded to the collection. For more information on how to construct IQL queries, see the IQL docs.

Examples

The examples directory contains end-to-end working examples for how to use the SDK.

  • upload_files.py walks through uploading a file, either locally or through a URL, and then waiting for its results.
  • download_all_collections_query.py creates an IQL query that queries all data across all collections

License

MIT License. Copyright 2021 Impira Inc.

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

impira-0.1.0.tar.gz (15.4 kB view details)

Uploaded Source

Built Distribution

impira-0.1.0-py3-none-any.whl (15.5 kB view details)

Uploaded Python 3

File details

Details for the file impira-0.1.0.tar.gz.

File metadata

  • Download URL: impira-0.1.0.tar.gz
  • Upload date:
  • Size: 15.4 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.4.2 importlib_metadata/4.6.4 pkginfo/1.7.1 requests/2.26.0 requests-toolbelt/0.9.1 tqdm/4.62.0 CPython/3.8.8

File hashes

Hashes for impira-0.1.0.tar.gz
Algorithm Hash digest
SHA256 3d93ab9420dd151fff537e9dec7aa520268d8d05e235f32bbef5e924f71677c1
MD5 68cf7bea096d8c49605e3467e6974a59
BLAKE2b-256 89b66f30bb21957cdd11dc5c92c45f2b8a88d6b97569f2eb90bf40233c696225

See more details on using hashes here.

File details

Details for the file impira-0.1.0-py3-none-any.whl.

File metadata

  • Download URL: impira-0.1.0-py3-none-any.whl
  • Upload date:
  • Size: 15.5 kB
  • Tags: Python 3
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.4.2 importlib_metadata/4.6.4 pkginfo/1.7.1 requests/2.26.0 requests-toolbelt/0.9.1 tqdm/4.62.0 CPython/3.8.8

File hashes

Hashes for impira-0.1.0-py3-none-any.whl
Algorithm Hash digest
SHA256 1890981e514e7116b31780e2467b0f72e8d1796cc608fb7f631f51fb4bb7ffcb
MD5 4220bf217d9a35dec44d16fa1dda686f
BLAKE2b-256 0b72713f4fa50a6806581781f83fd2014b000b12c5c8b885c4c5a92cf4ca502a

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