Skip to content

sypht-team/sypht-python-client

Folders and files

NameName
Last commit message
Last commit date
Sep 27, 2023
Sep 22, 2023
Sep 27, 2023
May 16, 2022
May 16, 2022
Sep 10, 2020
May 16, 2022
Sep 18, 2019
May 27, 2019
May 23, 2023
Sep 27, 2023

Repository files navigation

PyPI version Build Status codecov

Sypht Python Client

This repository is a Python 3+ reference client implementation for the Sypht API at https://api.sypht.com.

About Sypht

Sypht is a SaaS API which extracts key fields from documents and images.

For example, you can upload an image or pdf of a bill or invoice and extract the amount due, due date, invoice number and biller information.

For an up-to-date list of supported extraction types, see the Marketplace.

Getting started

To get started you'll need API credentials, i.e. a <client_id> and <client_secret>, which can be obtained by registering for an account

Installation

Latest version is available via pypi:

pip install sypht

Usage

from sypht.client import SyphtClient

sc = SyphtClient('<client_id>', '<client_secret>')

with open('invoice.png', 'rb') as f:
    fid = sc.upload(f, products=["forms-&-reports"])

print(sc.fetch_results(fid))

or run it via the command line:

export SYPHT_API_KEY="<client_id>:<client_secret>"
sypht extract --product invoices path/to/your/document.pdf

Documentation

Visit the Marketplace to see the full set of available AI Products, document types and data fields supported.

Advanced workflows, features and field data structures are covered in the Dev Guide.

License

The software in this repository is available as open source under the terms of the MIT License.

Code of Conduct

Everyone interacting in the project’s codebases, issue trackers, chat rooms and mailing lists is expected to follow the code of conduct.