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-user: 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', 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:

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

# 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

# Remove an integration
remove_result = bosa.remove_integration("github", user_token)

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.1.3-cp313-cp313-win_amd64.whl (347.8 kB view details)

Uploaded CPython 3.13Windows x86-64

bosa_connectors_binary-0.1.3-cp313-cp313-manylinux_2_31_x86_64.whl (531.9 kB view details)

Uploaded CPython 3.13manylinux: glibc 2.31+ x86-64

bosa_connectors_binary-0.1.3-cp313-cp313-macosx_14_0_arm64.whl (319.9 kB view details)

Uploaded CPython 3.13macOS 14.0+ ARM64

bosa_connectors_binary-0.1.3-cp313-cp313-macosx_13_0_x86_64.whl (358.5 kB view details)

Uploaded CPython 3.13macOS 13.0+ x86-64

bosa_connectors_binary-0.1.3-cp313-cp313-macosx_11_0_universal2.whl (326.9 kB view details)

Uploaded CPython 3.13macOS 11.0+ universal2 (ARM64, x86-64)

bosa_connectors_binary-0.1.3-cp313-cp313-macosx_10_13_universal2.whl (365.5 kB view details)

Uploaded CPython 3.13macOS 10.13+ universal2 (ARM64, x86-64)

bosa_connectors_binary-0.1.3-cp312-cp312-win_amd64.whl (349.1 kB view details)

Uploaded CPython 3.12Windows x86-64

bosa_connectors_binary-0.1.3-cp312-cp312-manylinux_2_31_x86_64.whl (535.3 kB view details)

Uploaded CPython 3.12manylinux: glibc 2.31+ x86-64

bosa_connectors_binary-0.1.3-cp312-cp312-macosx_14_0_arm64.whl (318.1 kB view details)

Uploaded CPython 3.12macOS 14.0+ ARM64

bosa_connectors_binary-0.1.3-cp312-cp312-macosx_13_0_x86_64.whl (356.6 kB view details)

Uploaded CPython 3.12macOS 13.0+ x86-64

bosa_connectors_binary-0.1.3-cp312-cp312-macosx_10_13_universal2.whl (363.6 kB view details)

Uploaded CPython 3.12macOS 10.13+ universal2 (ARM64, x86-64)

bosa_connectors_binary-0.1.3-cp311-cp311-win_amd64.whl (356.4 kB view details)

Uploaded CPython 3.11Windows x86-64

bosa_connectors_binary-0.1.3-cp311-cp311-manylinux_2_31_x86_64.whl (485.4 kB view details)

Uploaded CPython 3.11manylinux: glibc 2.31+ x86-64

bosa_connectors_binary-0.1.3-cp311-cp311-macosx_14_0_arm64.whl (314.8 kB view details)

Uploaded CPython 3.11macOS 14.0+ ARM64

bosa_connectors_binary-0.1.3-cp311-cp311-macosx_13_0_x86_64.whl (351.0 kB view details)

Uploaded CPython 3.11macOS 13.0+ x86-64

bosa_connectors_binary-0.1.3-cp311-cp311-macosx_11_0_universal2.whl (321.8 kB view details)

Uploaded CPython 3.11macOS 11.0+ universal2 (ARM64, x86-64)

bosa_connectors_binary-0.1.3-cp311-cp311-macosx_10_9_universal2.whl (358.0 kB view details)

Uploaded CPython 3.11macOS 10.9+ universal2 (ARM64, x86-64)

File details

Details for the file bosa_connectors_binary-0.1.3-cp313-cp313-win_amd64.whl.

File metadata

File hashes

Hashes for bosa_connectors_binary-0.1.3-cp313-cp313-win_amd64.whl
Algorithm Hash digest
SHA256 9638ea4db1e429c36d1553522767b1051713b79f61dbc89ae04694ea819e57a6
MD5 1dcc6f90a63734c101988b85e4034e68
BLAKE2b-256 1c2a7c900ebafb0efbb0f8037ce7a734022dadaeb6984beda95580f2f8e2112c

See more details on using hashes here.

Provenance

The following attestation bundles were made for bosa_connectors_binary-0.1.3-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.1.3-cp313-cp313-manylinux_2_31_x86_64.whl.

File metadata

File hashes

Hashes for bosa_connectors_binary-0.1.3-cp313-cp313-manylinux_2_31_x86_64.whl
Algorithm Hash digest
SHA256 0e2238de2a154bfd6fdcbfe50f59734096278ef3dc1e66ea34f275b8e188d037
MD5 8c23369c5c945c67ce81f5ada0bdb3fb
BLAKE2b-256 d19075740b2e533240a038d69ebc95245cde279f1402ae37bc4075d2f1b010b8

See more details on using hashes here.

File details

Details for the file bosa_connectors_binary-0.1.3-cp313-cp313-macosx_14_0_arm64.whl.

File metadata

File hashes

Hashes for bosa_connectors_binary-0.1.3-cp313-cp313-macosx_14_0_arm64.whl
Algorithm Hash digest
SHA256 b512436915818830a90f32398edb5922941bae47420d3fb539b28a8944148bdd
MD5 6a7d8baf6542d33dccf60a5c7671f058
BLAKE2b-256 26fadc510aff139bf1fdd947e9a9a109ba173c33b3e80b619d2e743d3b66e9e0

See more details on using hashes here.

Provenance

The following attestation bundles were made for bosa_connectors_binary-0.1.3-cp313-cp313-macosx_14_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.1.3-cp313-cp313-macosx_13_0_x86_64.whl.

File metadata

File hashes

Hashes for bosa_connectors_binary-0.1.3-cp313-cp313-macosx_13_0_x86_64.whl
Algorithm Hash digest
SHA256 ca997df0821b8bea69a16214f52fbed2e481542611a48288d60ccb1b70655142
MD5 371df85270699dd6d9e34f3675bb195e
BLAKE2b-256 2752feeaf60b137ce72438c3e3c28779fc772b472c8698e51e5fbf6f300f1b1d

See more details on using hashes here.

Provenance

The following attestation bundles were made for bosa_connectors_binary-0.1.3-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.1.3-cp313-cp313-macosx_11_0_universal2.whl.

File metadata

File hashes

Hashes for bosa_connectors_binary-0.1.3-cp313-cp313-macosx_11_0_universal2.whl
Algorithm Hash digest
SHA256 b5f7cf182afe94817885010525fa8ec0ae71b268950bc12ac10a1f3e0c7841f8
MD5 24c5b2c069756b6e95f222ca33b6a2c8
BLAKE2b-256 644bf1e80b905123a9066f753cb292efff925b8dbe921107eb38e7006e412b6d

See more details on using hashes here.

Provenance

The following attestation bundles were made for bosa_connectors_binary-0.1.3-cp313-cp313-macosx_11_0_universal2.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.1.3-cp313-cp313-macosx_10_13_universal2.whl.

File metadata

File hashes

Hashes for bosa_connectors_binary-0.1.3-cp313-cp313-macosx_10_13_universal2.whl
Algorithm Hash digest
SHA256 9ee8cdee5d7201fc1b646c9540db61201196233b16398ee41f6cedc487a95ba2
MD5 0388e49d99d4f9ccdad7fb63b5a62266
BLAKE2b-256 4904107e297fcdbed2b34ede483cae5c823f17e46033abf1404a1e8ac86b690c

See more details on using hashes here.

Provenance

The following attestation bundles were made for bosa_connectors_binary-0.1.3-cp313-cp313-macosx_10_13_universal2.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.1.3-cp312-cp312-win_amd64.whl.

File metadata

File hashes

Hashes for bosa_connectors_binary-0.1.3-cp312-cp312-win_amd64.whl
Algorithm Hash digest
SHA256 62c9dde7cbcad57ab8aacb57c0f66be26573f269f8fbe6cfab5b14bbe48f5f0a
MD5 63c99f3bf6669d6d99b2b4e3f1520c8b
BLAKE2b-256 f005d27039d7272d993a0d6a4303ad1f773e7f47dac9d725702bb12a9612ee15

See more details on using hashes here.

Provenance

The following attestation bundles were made for bosa_connectors_binary-0.1.3-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.1.3-cp312-cp312-manylinux_2_31_x86_64.whl.

File metadata

File hashes

Hashes for bosa_connectors_binary-0.1.3-cp312-cp312-manylinux_2_31_x86_64.whl
Algorithm Hash digest
SHA256 74a322330f5321bf5d97142a71224a0699305781cf02f4cda4cab2ac603d93bf
MD5 9546bf19253a6f83ea8049bc3a241674
BLAKE2b-256 6271f706142fec8b054f12fb869512e32725957219bb18d78145be9e088404f8

See more details on using hashes here.

File details

Details for the file bosa_connectors_binary-0.1.3-cp312-cp312-macosx_14_0_arm64.whl.

File metadata

File hashes

Hashes for bosa_connectors_binary-0.1.3-cp312-cp312-macosx_14_0_arm64.whl
Algorithm Hash digest
SHA256 ee56190900047a436b90020dd63cfcce059992d4d194de44cc2f056aa4bcd59b
MD5 9bba3326330dca544d0ed361b879eb76
BLAKE2b-256 55bbfcecf0a109d1ac0dbc7b3d66402ac4b7191d63578f3aa1aff79d1653a380

See more details on using hashes here.

Provenance

The following attestation bundles were made for bosa_connectors_binary-0.1.3-cp312-cp312-macosx_14_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.1.3-cp312-cp312-macosx_13_0_x86_64.whl.

File metadata

File hashes

Hashes for bosa_connectors_binary-0.1.3-cp312-cp312-macosx_13_0_x86_64.whl
Algorithm Hash digest
SHA256 55cedc2183a2caa905473af30349096fe8e4226d31e76947931f4a82d534f413
MD5 f29cfc4f2dfe7db93a2656e20520d5fc
BLAKE2b-256 5afa0e950f95503a275476ee5fc9a3d33232782d9aef494e77045d831b6e6f38

See more details on using hashes here.

Provenance

The following attestation bundles were made for bosa_connectors_binary-0.1.3-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.1.3-cp312-cp312-macosx_10_13_universal2.whl.

File metadata

File hashes

Hashes for bosa_connectors_binary-0.1.3-cp312-cp312-macosx_10_13_universal2.whl
Algorithm Hash digest
SHA256 2f1be40d37c1c0d0fa03cbd723882f55069d6b294a18a099d08f7dd529e15d55
MD5 ffd42e84f5adb861868117852ed401b8
BLAKE2b-256 e41f1a92411a9a62a79cebbf255b6b0baa75eae1a1d7f2b9d8ee435e36ca3169

See more details on using hashes here.

Provenance

The following attestation bundles were made for bosa_connectors_binary-0.1.3-cp312-cp312-macosx_10_13_universal2.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.1.3-cp311-cp311-win_amd64.whl.

File metadata

File hashes

Hashes for bosa_connectors_binary-0.1.3-cp311-cp311-win_amd64.whl
Algorithm Hash digest
SHA256 c869eb9660483fe7f7cd658ee4c7929bf0785abe51b909310a3a4c17279be360
MD5 42a05e7dcf9d6b62949e19faff80d5fd
BLAKE2b-256 856815da1a7ded02a702a279c4efc8f134964aad685bceea0531dde08b6dd893

See more details on using hashes here.

Provenance

The following attestation bundles were made for bosa_connectors_binary-0.1.3-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.1.3-cp311-cp311-manylinux_2_31_x86_64.whl.

File metadata

File hashes

Hashes for bosa_connectors_binary-0.1.3-cp311-cp311-manylinux_2_31_x86_64.whl
Algorithm Hash digest
SHA256 f652458e24e7d161a891ee073add9e357f8547d76fbd8f6c9b4e84f187b5ea14
MD5 a7986646788b1995e763bdfea0f0e261
BLAKE2b-256 b6a6b019764eaa502fa87bbe2b33c37c91349064678f0a2810b35d804b114e1c

See more details on using hashes here.

File details

Details for the file bosa_connectors_binary-0.1.3-cp311-cp311-macosx_14_0_arm64.whl.

File metadata

File hashes

Hashes for bosa_connectors_binary-0.1.3-cp311-cp311-macosx_14_0_arm64.whl
Algorithm Hash digest
SHA256 08b4fc133e42a001a01267e94feff8e538b008593bd6a169735a5b00814101f0
MD5 5fade5137b974e5abb1a8ee667aba84a
BLAKE2b-256 91dc647e4321c569f6e6c096a87c6af36b57565f5c3dbce1084ebae1a321cfcd

See more details on using hashes here.

Provenance

The following attestation bundles were made for bosa_connectors_binary-0.1.3-cp311-cp311-macosx_14_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.1.3-cp311-cp311-macosx_13_0_x86_64.whl.

File metadata

File hashes

Hashes for bosa_connectors_binary-0.1.3-cp311-cp311-macosx_13_0_x86_64.whl
Algorithm Hash digest
SHA256 080757d0e1b072a1f17de32aaba77148aced21c414a7f23c56eb712a51f96a15
MD5 a6ad145448c05d8232261923e84eac95
BLAKE2b-256 8ded5b1fd9ddc4f2acfee49c7bc0579d4fe7aade6b8e94f0f41ff47977335678

See more details on using hashes here.

Provenance

The following attestation bundles were made for bosa_connectors_binary-0.1.3-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.1.3-cp311-cp311-macosx_11_0_universal2.whl.

File metadata

File hashes

Hashes for bosa_connectors_binary-0.1.3-cp311-cp311-macosx_11_0_universal2.whl
Algorithm Hash digest
SHA256 98cab10bfd9ecf21a7bc7624727d85c8c2168cb1f17792c04e77f4dd80436cd1
MD5 4c8145b75aad04598eaae82f78f49842
BLAKE2b-256 185ccad58bd86daa55063a2071169fe77af31dfc820428e402bea4005bc82321

See more details on using hashes here.

Provenance

The following attestation bundles were made for bosa_connectors_binary-0.1.3-cp311-cp311-macosx_11_0_universal2.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.1.3-cp311-cp311-macosx_10_9_universal2.whl.

File metadata

File hashes

Hashes for bosa_connectors_binary-0.1.3-cp311-cp311-macosx_10_9_universal2.whl
Algorithm Hash digest
SHA256 bd1cdc4c2f9502600f53de96177b035f19d1e249400ef1f2a012ab2cb0227dcd
MD5 721c9745d4c165227fa4e1d8ec8675b1
BLAKE2b-256 51979b413df433f5448137daf98d91a779b51a3fa714352679d7ccd05e2a9798

See more details on using hashes here.

Provenance

The following attestation bundles were made for bosa_connectors_binary-0.1.3-cp311-cp311-macosx_10_9_universal2.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