Python client library for convenient usage of SAP Business Document Processing services
Project description
Python Client Library for the SAP AI Business Services: Document Classification and Document Information Extraction
This repository contains the source code of a Python client library to facilitate the use of the SAP AI Business Services: Document Classification and Document Information Extraction. The client library provides two API Client classes that contain convenient methods to access these services and issue calls to the Document Classification REST API and Document Information Extraction REST API respectively. To use the library you need to have access to SAP Business Technology Platform.
Check out the usage examples, they are very useful to get started with the services.
Have a look at API documentation in order to use the library.
Notes for users of the sap-document-classification-client library
This library includes all the capabilities of the sap-document-classification-client, which will not be developed further. However, the code is still available here. If you want to switch to this library, you have to be aware of the following changes:
- The DCApiClient can now be imported directly from the top module via:
from sap_business_document_processing import DCApiClient
- The functions
classifiy_documents
,upload_documents_to_dataset
,upload_documents_directory_to_dataset
now return an iterator instead of a list. You can either analyze individual results using withresult = next(iterator)
within a try-catch block (e.g. to handle each failed document) or useresults = list(iterator)
to turn it to a list. The latter will raise an error if at least one document failed. - The function
get_datasets_info
now returns a list which is the "dataset" part of the API response json. (You just need to delete the ["dataset"] from the response to work with it as until now) - The function
get_classification_documents_info
now returns a list which is the "results" part of the API response json. - The function
get_training_models_info
now returns a list which is the "models" part of the API response json. - The function
get_deployed_models_info
now returns a list which is the "deployments" part of the API response json. - The library now raises the following custom exceptions:
- BDPApiException: Base exception for all exceptions of this library. Raise when no other exception is applicable.
- BDPClientException: Raised when an HTTP response with status code between 400 and 500 is returned. Usually means incorrect user input. (Replaces some HTTPErrors)
- BDPServerException: Raised when an HTTP response with status code between 500 and 600 is returned. Usually means that the server had some internal error. (Replaces some HTTPErrors)
- BDPUnauthorizedException: Raised when an HTTP response with status code 401 is returned. Usually means that a wrong OAuth credentials were provided.
- BDPFailedAsynchronousOperationException: Raised when an asynchronous job failed during processing. (Replaces FailedCallException)
- BDPPollingTimeoutException: Raised when an asynchronous job exceeds the set polling_max_attempts. (Replaces PollingTimeoutException)
- The function
_poll_for_url
now doesn`t expect an 'url' and 'payload' parameters, but 'path' and 'json' parameters instead.
Requirements
This library requires properly setup Python 3.6 (or higher version) environment.
Download and Installation
This Python library should be consumed in the standard way by running
pip install sap-business-document-processing
or adding the library as a dependency of your code in requirements.txt
file.
Demo usage
Prerequisites:
- Get a Free Account on SAP BTP Trial
- Create Service Instance for Document Classification with Trial Account
- Create Service Instance for Document Information Extraction
Document Classification
To try out the Document classification service using the document classification client library you can also run the two demo links below:
- Try out classification using default model demo
- Try out training and classification using custom model demo (requires an enterprise account, trial account is not sufficient)
Document Information Extraction
Try out the Document Information Extraction service with this showcase
- Exercises
- Exercise 1 - Set up Document Information Extraction Service and UI
- Exercise 2 - Upload a document for extraction using UI application
- Exercise 3 - Visualize, correct extraction results and confirm document using UI application
- Exercise 4 - Get Auth token to use Document Information Extraction Rest API
- Exercise 5 - Get extraction results of document using Rest API
- Exercise 6 - Upload supplier Data for matching
- Exercise 7 - Upload document through Rest API to enrich the extraction Results with supplier data
Known Issues
Please see the issues section.
How to obtain support
In case you would like to contribute to this project, ask any questions or get support, please open an issue containing the description of your question or planned contribution in GitHub and we will get in touch.
Licensing
Please see our LICENSE for copyright and license information. Detailed information including third-party components and their licensing/copyright information is available via the REUSE tool.
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
Built Distribution
File details
Details for the file sap_business_document_processing-0.4.1.tar.gz
.
File metadata
- Download URL: sap_business_document_processing-0.4.1.tar.gz
- Upload date:
- Size: 32.3 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/5.0.0 CPython/3.9.19
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 34e8ac3ffe73ec02b6c960fa37649b7258160b29eeecae3c0be1ee010764a634 |
|
MD5 | f13239ea7cd3618cfe254f41c4b9fe25 |
|
BLAKE2b-256 | ef1652118abb327551b9b38805ae74a51c08167fb53ea4791dc2df9f40a5a646 |
File details
Details for the file sap_business_document_processing-0.4.1-py3-none-any.whl
.
File metadata
- Download URL: sap_business_document_processing-0.4.1-py3-none-any.whl
- Upload date:
- Size: 35.1 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/5.0.0 CPython/3.9.19
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 41d2dd04eda8e74f7d119dd239b118ec80a77533bc14c3f7250221fbd8d1a216 |
|
MD5 | 5f0320e25dab7a1d6851aac5a28b8c61 |
|
BLAKE2b-256 | 1d8ac6026272b5ba1db023b0940d6777f489f23655ff9fe9a43e6d02c378174b |