Skip to main content

API for Bleu

Project description

BleuAPIClient

License

Overview

BleuAPIClient is a Python client for interacting with the Bleu API. It provides a convenient way to access various endpoints for tasks such as KYC verification, face matching, and more.

Installation

You can install this package using pip:

pip install bleu-api-client

Usage

To use the BleuAPIClient in your Python project, you need to create an instance of the BleuAPIClient class, providing your client ID and client secret. Once initialized, you can call methods to interact with the Bleu API.

Here's an example of how to get started:

from BleuAPIClient import BleuAPIClient

# Initialize the client with your client ID and client secret
client = BleuAPIClient(client_id='your_client_id', client_secret='your_client_secret')

# Get an access token
client.get_access_token()

# Perform a single KYC verification
response = client.single_kyc_verification(
    selfie_image_path='path/to/selfie_image.jpg',
    doc_front_path='path/to/doc_front.jpg',
    doc_back_path='path/to/doc_back.jpg'
)

# Check the response
if response:
    if response['responseCode'] == BleuAPIClient.RESPONSE_CODES["SUCCESS"]:
        print("Verification successful.")
    else:
        print(f"Verification failed with code {response['responseCode']}")

# Continue using other methods as needed

API Endpoints

The BleuAPIClient provides methods for interacting with various API endpoints. Refer to the API_ENDPOINTS class variable for the available endpoints.

Response Codes

The BleuAPIClient includes a set of predefined response codes to help you interpret the results of your API requests. These codes are available as a dictionary under the RESPONSE_CODES class variable.

Configuration

You can configure the client by modifying its class variables, such as BASE_URL or adding new API endpoints and response codes as needed.

License

This project is licensed under the MIT License. See the LICENSE file for details.

Contributions

Contributions to this project are welcome. Please refer to the CONTRIBUTING guidelines for more information on how to contribute.


Make sure to replace 'your_client_id' and 'your_client_secret' with your actual credentials. You can also add more detailed information and examples to the README if necessary.

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

bleu_api-1.0.0.tar.gz (4.8 kB view hashes)

Uploaded Source

Built Distribution

bleu_api-1.0.0-py3-none-any.whl (5.1 kB view hashes)

Uploaded Python 3

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