Skip to main content

Konfuzio Software Development Kit

Project description

Konfuzio SDK

Downloads

The Konfuzio Software Development Kit (Konfuzio SDK) provides a Python API to interact with the Konfuzio Server.

Features

The SDK allows you to retrieve visual and text features to build your own document models. Konfuzio Server serves as an UI to define the data structure, manage training/test data and to deploy your models as API.

Function Public Host Free* On-Site (Paid)
OCR Text :heavy_check_mark: :heavy_check_mark:
OCR Handwriting :heavy_check_mark: :heavy_check_mark:
Text Annotation :heavy_check_mark: :heavy_check_mark:
PDF Annotation :heavy_check_mark: :heavy_check_mark:
Image Annotation :heavy_check_mark: :heavy_check_mark:
Table Annotation :heavy_check_mark: :heavy_check_mark:
Download HOCR :heavy_check_mark: :heavy_check_mark:
Download Images :heavy_check_mark: :heavy_check_mark:
Download PDF with OCR :heavy_check_mark: :heavy_check_mark:
Deploy AI models :heavy_multiplication_x: :heavy_check_mark:

* Under fair use policy: We will impose 10 pages/hour throttling eventually.

:ledger: Docs Read the docs
:floppy_disk: Installation How to install the Konfuzio SDK
:mortar_board: Tutorials See what the Konfuzio SDK can do with our Notebooks & Scripts
:bulb: Explanations Here are links to teaching material about the Konfuzio SDK.
:gear: API Reference Python classes, methods, and functions
:heart: Contributing Learn how to contribute!
:bug: Issue Tracker Report and monitor Konfuzio SDK issues
:telescope: Changelog Review the release notes
:newspaper: MIT License Review the license

Installation

As developer register on our public HOST for free: https://app.konfuzio.com

Then you can use pip to install Konfuzio SDK and run init:

pip install konfuzio_sdk

konfuzio_sdk init

The init will create a Token to connect to the Konfuzio Server. This will create variables KONFUZIO_USER, KONFUZIO_TOKEN and KONFUZIO_HOST in an .env file in your working directory.

By default, the SDK is installed without the AI-related dependencies like torch or transformers and allows for using only the Data-related SDK concepts but not the AI models. To install the SDK with the AI components, run the following command:

git clone https://github.com/konfuzio-ai/konfuzio-sdk.git
cd konfuzio-sdk
pip install -e .[ai]

Find the full installation guide here or setup PyCharm as described here.

CLI

We provide the basic function to create a new Project via CLI:

konfuzio_sdk create_project YOUR_PROJECT_NAME

You will see "Project {YOUR_PROJECT_NAME} (ID {YOUR_PROJECT_ID}) was created successfully!" printed.

And download any project via the id:

konfuzio_sdk export_project YOUR_PROJECT_ID

Tutorials

You can find detailed examples about how to set up and run document AI pipelines in our Tutorials, including:

Basics

Here we show how to use the Konfuzio SDK to retrieve data hosted on a Konfuzio Server instance.

from konfuzio_sdk.data import Project, Document

# Initialize the Project
YOUR_PROJECT_ID: int
my_project = Project(id_=YOUR_PROJECT_ID)

# Get any Document online
DOCUMENT_ID_ONLINE: int
doc: Document = my_project.get_document_by_id(DOCUMENT_ID_ONLINE)

# Get the Annotations in a Document
doc.annotations()

# Filter Annotations by Label
MY_OWN_LABEL_NAME: str
label = my_project.get_label_by_name(MY_OWN_LABEL_NAME)
doc.annotations(label=label)

# Or get all Annotations that belong to one Category
YOUR_CATEGORY_ID: int
category = my_project.get_category_by_id(YOUR_CATEGORY_ID)
label.annotations(categories=[category])

# Force a Project update. To save time Documents will only be updated if they have changed.
my_project.get(update=True)

Project details


Release history Release notifications | RSS feed

Download files

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

Source Distribution

konfuzio_sdk-0.2.24.dev20230707175258.tar.gz (143.0 kB view details)

Uploaded Source

Built Distribution

File details

Details for the file konfuzio_sdk-0.2.24.dev20230707175258.tar.gz.

File metadata

File hashes

Hashes for konfuzio_sdk-0.2.24.dev20230707175258.tar.gz
Algorithm Hash digest
SHA256 75da38565a14dfb004f2f4a3a6b0dd016fce5b2dcf81161e979c34d0a8b9a15e
MD5 80fbe8200c5386ea4a63afe6249ba73c
BLAKE2b-256 08afb1aed23bbc2bcc9de921eadd015a1721f9c7369310aa49dccb0da0f3c7d7

See more details on using hashes here.

File details

Details for the file konfuzio_sdk-0.2.24.dev20230707175258-py3-none-any.whl.

File metadata

File hashes

Hashes for konfuzio_sdk-0.2.24.dev20230707175258-py3-none-any.whl
Algorithm Hash digest
SHA256 ba6d5c1eddadc0e5b7d86da94a84ce810936bab8d5c767f1ebc9a6c1bb7f058f
MD5 960cf595b83982efd7f7b776aeaf6252
BLAKE2b-256 51bba5b50bbd0e7a478469517bee938da46551111802a5baad9eee4fe519575a

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