Skip to main content

BOSA Connectors

Project description

BOSA API SDK (Bosa Connector)

A Python SDK for seamlessly connecting to APIs that implement BOSA's Plugin Architecture under HTTP Interface. This connector acts as a proxy, simplifying the integration with BOSA-compatible APIs.

Features

  • Simple and intuitive API for connecting to BOSA-compatible services
  • Automatic endpoint discovery and schema validation
  • Built-in authentication support (BOSA API Key and User Token)
  • User management and OAuth2 integration flow support
  • Type-safe parameter validation
  • Flexible parameter passing (dictionary or keyword arguments)
  • Retry support for requests that fail (429 or 5xx)
  • Response fields filtering based on action and output

Prerequisites

After the bosa-api ready, you can perform the following tasks:

  • Ensure Bosa API is running. If you want to test locally, or you can use Staging or Production environments.
  • Create Client
    • You can send a create-client request to the bosa-api using Postman with the following header and body:
      • Header
        • x-api-key: KEY1
      • Body
        • name: "{client name}"
    • Response :
      {
        "data": {
          "id": "{client_id}",
          "name": "admin",
          "api_key": "{client_api_key}",
          "is_active": true
        },
        "meta": null
      }
      
  • Register the user, see the details here.

Installation

Prerequisites

1. Installation from Pypi

Choose one of the following methods to install the package:

Using pip

pip install bosa-connectors-binary

Using Poetry

poetry add bosa-connectors-binary

2. Development Installation (Git)

For development purposes, you can install directly from the Git repository:

poetry add "git+ssh://git@github.com/GDP-ADMIN/bosa-sdk.git#subdirectory=python/bosa-connectors"

Quick Start

Here's a simple example of how to use the BOSA Connector with API key authentication and user token.

Initialization

Before using the connector, you need to initialize it with your BOSA API base URL and API key.

from bosa_connectors.connector import BosaConnector

# Initialize the connector
bosa = BosaConnector(api_base_url="YOUR_BOSA_API_BASE_URL", api_key="YOUR_API_KEY")

Authentication

After initializing the connector, you can authenticate with your BOSA API key.

# User token from authentication
user_token = "Enter your key (bearer token) here from authentication, or refer to User Authentication section below"

# Check if a user has an integration for a connector
has_integration = bosa.user_has_integration("github", user_token)

if not has_integration:
    # Initiate the OAuth2 flow for a connector
    auth_url = bosa.initiate_connector_auth("github", user_token, "https://your-callback-uri.com")
    # Redirect the user to auth_url to complete authentication, we exit here.
    print("Integration with GitHub not found.")
    print(f"Please visit {auth_url} to complete authentication.")
    exit()

Alternatively, you can authenticate the user first and then use their token:

user = bosa.authenticate_bosa_user("username", "password")

# Get user token
user_token = user.token

Basic Example (Direct Execution)

It is the basic way to execute actions, where you need to provide the connector name, action name, and user token. The response will contain the data and status:

# Prepare input parameters
params = {
    "repo": "my-local-repo", # try to use your local repo for testing
    "owner": "rexywjy",
}

# Execute the action with user token
data, status = bosa.execute("github", "list_collaborators", token=user_token, max_attempts=1, input_=params)
print(data)
print(status)

More details about parameters and actions in bosa-api docs {domain}/docs

Alternative Approach (Fluent Interface)

For more complex scenarios or more control over the execution, you can use the fluent interface. We're recommending this approach if you:

  • Need to execute multiple actions with different parameters
  • Expecting list response
  • Need to execute actions in a loop
# Prepare input parameters
params = {
    "owner": "gdp-admin",
    "author": "samuellusandi",
    "per_page": 1,
    "sort": "author_date",
    "created_date_start": "2025-02-01",
    "created_date_end": "2025-02-02"
}

# Create a connector instance to a service
github = bosa.connect('github')

# Execute actions with fluent interface
response = github.action('list_pull_requests')\
    .params(params)\
    .max_attempts(3)\
    .token('user-token')\
    .run()  # Execute and return ActionResponse for advanced data handling

# Get initial data
initial_data = response.get_data()

# Iterate the following next pages
while response.has_next():
    response = response.next_page()
    data = response.get_data()
    # Process data here
    ...

# You can also navigate backwards
while response.has_prev():
    response = response.prev_page()
    data = response.get_data()
    # Process data here
    ...

# Execute multiple independent actions using the same connector instance
commits_response = github.action('list_commits')\
    .params({
        'owner': 'GDP-ADMIN',
        'repo': 'bosa',
        'page': 1,
        'per_page': 10
    })\
    .token('user-token')\
    .run()

run method also available for direct execution from connector instance, without using fluent interface.

# Prepare input parameters
params = {
    "owner": "gdp-admin",
    "author": "samuellusandi",
    "per_page": 1,
    "sort": "author_date",
    "created_date_start": "2025-02-01",
    "created_date_end": "2025-02-02"
}

# Execute actions with run method
response = bosa.run('github', 'list_pull_requests', input_=params)
print(response.get_data())

Working with Files using ConnectorFile

When working with APIs that require file uploads or return file downloads, use the ConnectorFile model:

from bosa_connectors.models.file import ConnectorFile

# For uploads: Create a ConnectorFile object
with open("document.pdf", "rb") as f:
    upload_file = ConnectorFile(
        file=f.read(),
        filename="document.pdf",
        content_type="application/pdf"
    )

params = {
  "file": upload_file,
  "name": "My Document"
}

# Include in your parameters
result, status = bosa.execute("google_drive", "upload_file", input_=params)

# For downloads: Check response type
file_result, status = bosa.execute("google_drive", "download_file", input_={"file_id": "123"})
if isinstance(file_result, ConnectorFile):
    # Save to disk
    with open(file_result.filename or "downloaded_file", "wb") as f:
        f.write(file_result.file)

Available Methods

Connector Instance Methods

The connector instance provides several methods for configuring and executing actions:

  • connect(name): Create a connector instance to a service

  • action(name): Specify the action to execute

  • params(dict): Set request parameters (including pagination parameters like page and per_page). Note that params for each plugin and action could be different

  • token(str): Set the BOSA user token

  • headers(dict): Set custom request headers

  • max_attempts(number): Set the maximum number of retry attempts (default: 1) Execution Methods:

  • run(): Execute and return ActionResponse for advanced data handling

  • execute(): Execute and return data and status for basic data handling. The data part of the return value can be a ConnectorFile object when the API returns a non-JSON response (such as a file download).

Response Handling (ActionResponse)

The ActionResponse class provides methods for handling the response and pagination:

  • get_data(): Get the current page data (returns the data field from the response). This can return a ConnectorFile object when the API returns a non-JSON response (such as a file download).
  • get_meta(): Get the metadata information from the response (e.g., pagination details, total count)
  • get_status(): Get the HTTP status code
  • is_list(): Check if response is a list
  • has_next(): Check if there is a next page
  • has_prev(): Check if there is a previous page
  • next_page(): Move to and execute next page
  • prev_page(): Move to and execute previous page
  • get_all_items(): Get all items from all pages (returns a list of objects containing data and meta for each page)

Data Models

The SDK uses the following data models:

  • ActionResponseData: Contains the response data structure with data (list, object, or ConnectorFile instance) and meta (metadata) fields
  • InitialExecutorRequest: Stores the initial request parameters used for pagination and subsequent requests
  • ConnectorFile: Represents a file in requests and responses with these properties:
    • file: Raw bytes content of the file
    • filename: Optional name of the file
    • content_type: Optional MIME type of the file
    • headers: Optional HTTP headers for the file

Configuration Parameters

  • api_base_url: The base URL of your BOSA API endpoint (default: "https://api.bosa.id"). This parameter is extremely important as it determines the URL of the BOSA API you are connecting to, and it will be used to populate the available actions/endpoints and their parameters upon initialization.
  • api_key: Your BOSA API key for authentication. This is different from plugin-specific API keys, which are managed separately by the BOSA system.

Execution Parameters

  • connector: The name of the connector to use. This parameter is used to determine the connector's available actions and their parameters.
  • action: The name of the action to execute. This parameter is automatically populated by the connector based on the available actions and their parameters. The list of available actions per connector can be found in https://api.bosa.id/docs and are populated through https://api.bosa.id/connectors.
  • max_attempts: The maximum number of attempts to make the API request. If the request fails, the connector will retry the request up to this number of times. The default value is 1 if not provided.
    • The retries are handled automatically by the connector, with exponential backoff.
    • The retries are only done for errors that are considered retryable (429 or 5xx).
  • input_: The input parameters for the action. This parameter is a dictionary that contains the parameters for the action. The connector will validate the input parameters against the action's schema.
    • To filter response fields, simply add the response_fields parameter to the input dictionary. This parameter is a list of field names that will be returned in the response. For nested fields, you can use dot notation, e.g. user.login will return the following:
    {
      "user": {
        "login": "userlogin"
      }
    }
    
  • token: Optional BOSA User Token for authenticating requests. When provided, the connector will include this token in the request headers. This is required for user-specific actions or when working with third-party integrations.

How It Works

  1. Initialization: When you create a BosaConnector instance, and trigger an execute(), the connector will first populate and cache the available actions and their parameters. This is done automatically.

  2. Action Discovery: The connector expects the BOSA API to expose an endpoint that lists all available actions and their parameters. This is handled automatically by BOSA's HTTP Interface.

  3. Execution: When you call execute(), the connector:

    • Validates your input parameters against the action's schema
    • Handles authentication
    • Makes the API request
    • Returns the formatted response

Compatibility

While primarily tested with BOSA's HTTP Interface, this connector should theoretically work with any API that implements BOSA's Plugin Architecture, as long as it:

  1. Exposes an endpoint listing available actions and their parameters
  2. Follows BOSA's standard HTTP Interface specifications (through the Plugin Architecture)
    • All actions must be exposed as POST endpoints.
  3. Implements the required authentication mechanisms

Error Handling

The connector includes built-in error handling for:

  • Invalid parameters
  • Authentication failures
  • Connection issues
  • API response errors

User Authentication

The BOSA Connector supports user-based authentication which allows for user-specific actions and third-party integrations:

# Step 1: Create a new BOSA user
user_data = bosa.create_bosa_user("username")
# Save the secret for later use
user_secret = user_data.secret

# Step 2: Authenticate the user and obtain their token
token = bosa.authenticate_bosa_user("username", user_secret)

# Step 3: Retrieve user information using the obtained token
user_info = bosa.get_user_info(token.token)

❗ Important Notes

🛡️ Best Practice: Since bearer tokens can have a long lifespan, it is highly recommended to reuse existing tokens whenever possible. While creating new tokens is functionally acceptable, be aware that older tokens may become dangling and can pose a security risk if they are exposed or misused.

⚠️ Security Reminder: When you register a new BOSA user, you will receive a token that starts with "sk-user-...". It is essential to keep this token safe, as it cannot be recovered if lost, and currently, there is no option to reset it.

Integration Management

The BOSA Connector provides methods to manage third-party integrations for authenticated users:

# Initiate the OAuth2 flow for a connector
auth_url = bosa.initiate_connector_auth("github", user_token, "https://your-callback-uri.com")
# Redirect the user to auth_url to complete authentication

# Check if a user has an integration for a connector
has_integration = bosa.user_has_integration("github", user_token)

# Retrieve all user integrations information
user_info = bosa.get_user_info(user_token)
integrations = user_info.integrations

# Select an integration
select_result = bosa.select_integration("github", user_token, integrations[0].user_identifier)

# Remove an integration
remove_result = bosa.remove_integration("github", user_token, integrations[0].user_identifier)

References

Product Requirements Documents(PRD):

Architecture Documents:

Design Documents:

Implementation Documents:

Project details


Download files

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

Source Distributions

No source distribution files available for this release.See tutorial on generating distribution archives.

Built Distributions

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

bosa_connectors_binary-0.3.0b1-cp313-cp313-win_amd64.whl (386.1 kB view details)

Uploaded CPython 3.13Windows x86-64

bosa_connectors_binary-0.3.0b1-cp313-cp313-manylinux_2_34_x86_64.whl (567.6 kB view details)

Uploaded CPython 3.13manylinux: glibc 2.34+ x86-64

bosa_connectors_binary-0.3.0b1-cp313-cp313-macosx_13_0_x86_64.whl (404.5 kB view details)

Uploaded CPython 3.13macOS 13.0+ x86-64

bosa_connectors_binary-0.3.0b1-cp313-cp313-macosx_13_0_arm64.macosx_15_0_arm64.whl (349.0 kB view details)

Uploaded CPython 3.13macOS 13.0+ ARM64macOS 15.0+ ARM64

bosa_connectors_binary-0.3.0b1-cp312-cp312-win_amd64.whl (387.6 kB view details)

Uploaded CPython 3.12Windows x86-64

bosa_connectors_binary-0.3.0b1-cp312-cp312-manylinux_2_34_x86_64.whl (568.7 kB view details)

Uploaded CPython 3.12manylinux: glibc 2.34+ x86-64

bosa_connectors_binary-0.3.0b1-cp312-cp312-macosx_13_0_x86_64.whl (402.8 kB view details)

Uploaded CPython 3.12macOS 13.0+ x86-64

bosa_connectors_binary-0.3.0b1-cp312-cp312-macosx_13_0_arm64.macosx_15_0_arm64.whl (347.1 kB view details)

Uploaded CPython 3.12macOS 13.0+ ARM64macOS 15.0+ ARM64

bosa_connectors_binary-0.3.0b1-cp311-cp311-win_amd64.whl (392.2 kB view details)

Uploaded CPython 3.11Windows x86-64

bosa_connectors_binary-0.3.0b1-cp311-cp311-manylinux_2_34_x86_64.whl (509.8 kB view details)

Uploaded CPython 3.11manylinux: glibc 2.34+ x86-64

bosa_connectors_binary-0.3.0b1-cp311-cp311-macosx_13_0_x86_64.whl (395.1 kB view details)

Uploaded CPython 3.11macOS 13.0+ x86-64

bosa_connectors_binary-0.3.0b1-cp311-cp311-macosx_13_0_arm64.macosx_15_0_arm64.whl (342.8 kB view details)

Uploaded CPython 3.11macOS 13.0+ ARM64macOS 15.0+ ARM64

File details

Details for the file bosa_connectors_binary-0.3.0b1-cp313-cp313-win_amd64.whl.

File metadata

File hashes

Hashes for bosa_connectors_binary-0.3.0b1-cp313-cp313-win_amd64.whl
Algorithm Hash digest
SHA256 f1c9ee9842da88845899e71e582860e16bad04ad4eb80b44c5f99f77b07e21e5
MD5 8dcf153e654a8cf1c005b97bfa33dc2e
BLAKE2b-256 8f48724a8140d3e35e5256347083c15c3ef472d87fa0c3a433ff33798c410290

See more details on using hashes here.

Provenance

The following attestation bundles were made for bosa_connectors_binary-0.3.0b1-cp313-cp313-win_amd64.whl:

Publisher: build-binary.yml on GDP-ADMIN/bosa-sdk

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file bosa_connectors_binary-0.3.0b1-cp313-cp313-manylinux_2_34_x86_64.whl.

File metadata

File hashes

Hashes for bosa_connectors_binary-0.3.0b1-cp313-cp313-manylinux_2_34_x86_64.whl
Algorithm Hash digest
SHA256 99b0a92b1c84a7318f9eabaa75784402ff91fa645781fe8894d2c8a6c96a8f4e
MD5 8ff95083676ecda1381f6700f4f001a7
BLAKE2b-256 cf10ac4ec0ea7f2c853d4dc349d092558d9010f6627dde4ac9184295fa396471

See more details on using hashes here.

File details

Details for the file bosa_connectors_binary-0.3.0b1-cp313-cp313-macosx_13_0_x86_64.whl.

File metadata

File hashes

Hashes for bosa_connectors_binary-0.3.0b1-cp313-cp313-macosx_13_0_x86_64.whl
Algorithm Hash digest
SHA256 afa0208daafc93054697ed428caa8cefa483da7911b3a46e1dd8e03dd5bc1fdf
MD5 3f225f1e353809c33718623537816489
BLAKE2b-256 5863a19076b0a8596dbb9a6ff8304f1a96db9c62ab0df648c15fa7cf7a3df9e1

See more details on using hashes here.

Provenance

The following attestation bundles were made for bosa_connectors_binary-0.3.0b1-cp313-cp313-macosx_13_0_x86_64.whl:

Publisher: build-binary.yml on GDP-ADMIN/bosa-sdk

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file bosa_connectors_binary-0.3.0b1-cp313-cp313-macosx_13_0_arm64.macosx_15_0_arm64.whl.

File metadata

File hashes

Hashes for bosa_connectors_binary-0.3.0b1-cp313-cp313-macosx_13_0_arm64.macosx_15_0_arm64.whl
Algorithm Hash digest
SHA256 c3c1bad7f3899c156905e08c8a9ca75f856c1aad452749e5bcc41eead22ef92f
MD5 032579fc6380352642632396816ae7c2
BLAKE2b-256 1e47e12df964554e7aec693b83101aa5a343ba0a0e73639398dcb804b300d7f7

See more details on using hashes here.

Provenance

The following attestation bundles were made for bosa_connectors_binary-0.3.0b1-cp313-cp313-macosx_13_0_arm64.macosx_15_0_arm64.whl:

Publisher: build-binary.yml on GDP-ADMIN/bosa-sdk

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file bosa_connectors_binary-0.3.0b1-cp312-cp312-win_amd64.whl.

File metadata

File hashes

Hashes for bosa_connectors_binary-0.3.0b1-cp312-cp312-win_amd64.whl
Algorithm Hash digest
SHA256 a4d0734ef825459115337fee3da0c994546390a8d9a28c8cd6984d0163fd7625
MD5 d270b899fb7e8c9ffd7f8ed446d69e52
BLAKE2b-256 22c19f6966f5ed9384828a5c9aa4f0c2c70e4486b84af6fdf6cd9beb3142e661

See more details on using hashes here.

Provenance

The following attestation bundles were made for bosa_connectors_binary-0.3.0b1-cp312-cp312-win_amd64.whl:

Publisher: build-binary.yml on GDP-ADMIN/bosa-sdk

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file bosa_connectors_binary-0.3.0b1-cp312-cp312-manylinux_2_34_x86_64.whl.

File metadata

File hashes

Hashes for bosa_connectors_binary-0.3.0b1-cp312-cp312-manylinux_2_34_x86_64.whl
Algorithm Hash digest
SHA256 b69ba9776947481740aa6d1d3ec4b8643e360746307c9caa04f8ced1ab423ba8
MD5 668a261fc0c01d42630b02bde48937ab
BLAKE2b-256 fadb2eebbe7e56014ad12612d607d1f0f7987b5d411e5a3adf4e9a35f7512423

See more details on using hashes here.

File details

Details for the file bosa_connectors_binary-0.3.0b1-cp312-cp312-macosx_13_0_x86_64.whl.

File metadata

File hashes

Hashes for bosa_connectors_binary-0.3.0b1-cp312-cp312-macosx_13_0_x86_64.whl
Algorithm Hash digest
SHA256 0daa54b5ff1c21966b55bf17184f9c6dd14337aeb75b2dcb0a5408170d777aa6
MD5 ddba7c94c90a7dec504e6fda52c26e3e
BLAKE2b-256 b2bd57793dcda1c8646a7db0ec282f2bfe7c6784dfdc90399a0d281a3ebcf45f

See more details on using hashes here.

Provenance

The following attestation bundles were made for bosa_connectors_binary-0.3.0b1-cp312-cp312-macosx_13_0_x86_64.whl:

Publisher: build-binary.yml on GDP-ADMIN/bosa-sdk

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file bosa_connectors_binary-0.3.0b1-cp312-cp312-macosx_13_0_arm64.macosx_15_0_arm64.whl.

File metadata

File hashes

Hashes for bosa_connectors_binary-0.3.0b1-cp312-cp312-macosx_13_0_arm64.macosx_15_0_arm64.whl
Algorithm Hash digest
SHA256 eea3f4d0f389b6c04ea8c40532db9a75387fad6750d50c75c690b6014ed42ca7
MD5 6fb891037d7389f576c2e7e082b266a6
BLAKE2b-256 dae406146b97133fa85cae2f570575bc744dd3292cbc266fcf438333c35869e7

See more details on using hashes here.

Provenance

The following attestation bundles were made for bosa_connectors_binary-0.3.0b1-cp312-cp312-macosx_13_0_arm64.macosx_15_0_arm64.whl:

Publisher: build-binary.yml on GDP-ADMIN/bosa-sdk

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file bosa_connectors_binary-0.3.0b1-cp311-cp311-win_amd64.whl.

File metadata

File hashes

Hashes for bosa_connectors_binary-0.3.0b1-cp311-cp311-win_amd64.whl
Algorithm Hash digest
SHA256 35c26f9689a36d569a5710b019c7a5298ddd0f7f2f6e8a426cb44692a7e895dc
MD5 34467fb740db40865453c2f1a4e184be
BLAKE2b-256 2e6e346f9d18464ebd46af75a42c24f3d5b40cd62c34895118a131e732973ea8

See more details on using hashes here.

Provenance

The following attestation bundles were made for bosa_connectors_binary-0.3.0b1-cp311-cp311-win_amd64.whl:

Publisher: build-binary.yml on GDP-ADMIN/bosa-sdk

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file bosa_connectors_binary-0.3.0b1-cp311-cp311-manylinux_2_34_x86_64.whl.

File metadata

File hashes

Hashes for bosa_connectors_binary-0.3.0b1-cp311-cp311-manylinux_2_34_x86_64.whl
Algorithm Hash digest
SHA256 b5ab35bc5b6e258e2da30a99ffa478c873d50931c75db9145bb17a8054973f32
MD5 fb59ac60bc2302f515fc165eb3480bd8
BLAKE2b-256 8861a74ddab5e51ee9847439a6236eab366e418099e45691acec304883dc7d7a

See more details on using hashes here.

File details

Details for the file bosa_connectors_binary-0.3.0b1-cp311-cp311-macosx_13_0_x86_64.whl.

File metadata

File hashes

Hashes for bosa_connectors_binary-0.3.0b1-cp311-cp311-macosx_13_0_x86_64.whl
Algorithm Hash digest
SHA256 28d6e089aa787a0dd50e00a7395a0e53f572fa329e681e5c34b8905ea8fdaf95
MD5 cfcae3d4ca54ec7c9d4238c93414d6f0
BLAKE2b-256 ec73a6e7b870f417a80d002a5654016ee74c0f19914b16230a76dcd6990207a9

See more details on using hashes here.

Provenance

The following attestation bundles were made for bosa_connectors_binary-0.3.0b1-cp311-cp311-macosx_13_0_x86_64.whl:

Publisher: build-binary.yml on GDP-ADMIN/bosa-sdk

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file bosa_connectors_binary-0.3.0b1-cp311-cp311-macosx_13_0_arm64.macosx_15_0_arm64.whl.

File metadata

File hashes

Hashes for bosa_connectors_binary-0.3.0b1-cp311-cp311-macosx_13_0_arm64.macosx_15_0_arm64.whl
Algorithm Hash digest
SHA256 419134f8acfd5f2549afb54024976391a47b884126461f106cdb32ba94e8fd47
MD5 58aeebcd5221a2999a5898c83618e136
BLAKE2b-256 edd121389a886dc771b05d6a11fab479c6fd9f559687914f016f6daa28c86f61

See more details on using hashes here.

Provenance

The following attestation bundles were made for bosa_connectors_binary-0.3.0b1-cp311-cp311-macosx_13_0_arm64.macosx_15_0_arm64.whl:

Publisher: build-binary.yml on GDP-ADMIN/bosa-sdk

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

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