Skip to main content

Resistant.ai document forjerry python client for convenient integration with REST API service.

Project description

Resistant documents client

This library provides a Python client for a Resistant.ai document forgery analysis service. For a detailed description of the API please see API reference docs.

Prerequisites

During the customer onboarding process, you should be provided with the following:

  • CLIENT_ID : str
  • CLIENT_SECRET : str

Note: Those credentials are connected with specific environment (e.g. test, production etc.). Together with secret credentials for non-production environment you should be provided with url links:

  • api_url
  • token_url

Basic usage

Submit a document for analysis with default pipeline configuration.

from resistant_documents_client.client import ResistantDocumentsClient

client = ResistantDocumentsClient(client_id="CLIENT_ID", client_secret="CLIENT_SECRET")
with open("local_file.pdf", "rb") as fp:
    report = client.analyze(fp.read(), query_id="local_file.pdf")
print(report["score"])

For non-production environment, provide api_url and token_url provided together with client secrets to client creation (ResistantDocumentsClient).

Customized usage

Submit a document for analysis with customized process parameters or select a different type of analysis.

Step 1: Create a client with your credentials

client = ResistantDocumentsClient(client_id="CLIENT_ID", client_secret="CLIENT_SECRET")

Note: If your client secrets are for different environment than production you have to provide following api_url token_url. To setup proxy server URL, you can provide optional proxy.

Step 2: Create submission with pipeline setup

with open("local_file.pdf", "rb") as fp:
    my_submission_id = client.submit(fp.read(), query_id="local_file.pdf", pipeline_configuration="CONTENT_AFTER_FRAUD_AFTER_QUALITY")

Possible pipeline configurations are listed in REST API docs

Step 3: Retrieve analysis result

You can retrieve only those types of analysis which were requested in the previous step as pipeline_configuration option.

result_content = client.content(submission_id=submission_id)
result_fraud = client.content(submission_id=submission_id)
result_quality = client.quality(submission_id=submission_id)

print(result_content)
print(result_fraud)
print(result_quality)

These methods also accept max_num_retries, which represents how many times the client will poll the server before failing (because the communication is asynchronous). It might be customized but has a default value. Other parameters correspond to the ones in the REST API docs.

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

resistant_documents_client-2.1.0.tar.gz (6.4 kB view details)

Uploaded Source

Built Distribution

If you're not sure about the file name format, learn more about wheel file names.

resistant_documents_client-2.1.0-py3-none-any.whl (7.7 kB view details)

Uploaded Python 3

File details

Details for the file resistant_documents_client-2.1.0.tar.gz.

File metadata

  • Download URL: resistant_documents_client-2.1.0.tar.gz
  • Upload date:
  • Size: 6.4 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: poetry/1.1.13 CPython/3.8.12 Linux/4.4.0-1052-aws

File hashes

Hashes for resistant_documents_client-2.1.0.tar.gz
Algorithm Hash digest
SHA256 b32ffc7dc1b9b09ebc82a6637ba7345a03d0e2eb40cb9a92fd3cafc9ca5599a9
MD5 f06348b60251aa81592124ed8e61f325
BLAKE2b-256 5bf210792f6f7e28f01c45ea0c6350adb5e8d006821432af074a653c17572992

See more details on using hashes here.

File details

Details for the file resistant_documents_client-2.1.0-py3-none-any.whl.

File metadata

File hashes

Hashes for resistant_documents_client-2.1.0-py3-none-any.whl
Algorithm Hash digest
SHA256 022bf1f6a6abe4379ec8542ca333d6b865bbc92fbce4452285e2b8240aecf439
MD5 54ab3263097ae809742914368da1c35c
BLAKE2b-256 c5d3e9834a97f5d62b9d68e5c08525a112db3c3feb5ba539ef006c0435cf1e1a

See more details on using hashes here.

Supported by

AWS Cloud computing and Security Sponsor Datadog Monitoring Depot Continuous Integration Fastly CDN Google Download Analytics Pingdom Monitoring Sentry Error logging StatusPage Status page