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

Uploaded CPython 3.13Windows x86-64

bosa_connectors_binary-0.1.1-cp313-cp313-manylinux_2_36_x86_64.whl (517.8 kB view details)

Uploaded CPython 3.13manylinux: glibc 2.36+ x86-64

bosa_connectors_binary-0.1.1-cp313-cp313-manylinux_2_31_x86_64.whl (523.3 kB view details)

Uploaded CPython 3.13manylinux: glibc 2.31+ x86-64

bosa_connectors_binary-0.1.1-cp313-cp313-macosx_14_0_arm64.whl (318.8 kB view details)

Uploaded CPython 3.13macOS 14.0+ ARM64

bosa_connectors_binary-0.1.1-cp313-cp313-macosx_13_0_x86_64.whl (357.3 kB view details)

Uploaded CPython 3.13macOS 13.0+ x86-64

bosa_connectors_binary-0.1.1-cp312-cp312-win_amd64.whl (346.7 kB view details)

Uploaded CPython 3.12Windows x86-64

bosa_connectors_binary-0.1.1-cp312-cp312-manylinux_2_36_x86_64.whl (519.9 kB view details)

Uploaded CPython 3.12manylinux: glibc 2.36+ x86-64

bosa_connectors_binary-0.1.1-cp312-cp312-manylinux_2_31_x86_64.whl (527.0 kB view details)

Uploaded CPython 3.12manylinux: glibc 2.31+ x86-64

bosa_connectors_binary-0.1.1-cp312-cp312-macosx_14_0_arm64.whl (317.3 kB view details)

Uploaded CPython 3.12macOS 14.0+ ARM64

bosa_connectors_binary-0.1.1-cp312-cp312-macosx_13_0_x86_64.whl (355.6 kB view details)

Uploaded CPython 3.12macOS 13.0+ x86-64

bosa_connectors_binary-0.1.1-cp311-cp311-win_amd64.whl (349.7 kB view details)

Uploaded CPython 3.11Windows x86-64

bosa_connectors_binary-0.1.1-cp311-cp311-manylinux_2_36_x86_64.whl (465.7 kB view details)

Uploaded CPython 3.11manylinux: glibc 2.36+ x86-64

bosa_connectors_binary-0.1.1-cp311-cp311-manylinux_2_31_x86_64.whl (477.4 kB view details)

Uploaded CPython 3.11manylinux: glibc 2.31+ x86-64

bosa_connectors_binary-0.1.1-cp311-cp311-macosx_14_0_arm64.whl (313.8 kB view details)

Uploaded CPython 3.11macOS 14.0+ ARM64

bosa_connectors_binary-0.1.1-cp311-cp311-macosx_13_0_x86_64.whl (349.5 kB view details)

Uploaded CPython 3.11macOS 13.0+ x86-64

File details

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

File metadata

File hashes

Hashes for bosa_connectors_binary-0.1.1-cp313-cp313-win_amd64.whl
Algorithm Hash digest
SHA256 af6a2401a943eaa4ffc5d82b724fb4b2934c9de8957d14c0ce3f2692a5d552a6
MD5 6efe81674d0cb7af3c5d12c321dfe7f8
BLAKE2b-256 f6a0227f228a987bbf3740347471f35e494f408b8583a8b43e3b700ceab072d8

See more details on using hashes here.

Provenance

The following attestation bundles were made for bosa_connectors_binary-0.1.1-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.1-cp313-cp313-manylinux_2_36_x86_64.whl.

File metadata

File hashes

Hashes for bosa_connectors_binary-0.1.1-cp313-cp313-manylinux_2_36_x86_64.whl
Algorithm Hash digest
SHA256 b10575979708de8986e4141dd6801850da7161e7ee737d55b5189ea3ea0b05fe
MD5 b008af14db3a30d4d0011168bf419abf
BLAKE2b-256 50d35d3aef7111f168371f8e04c32fc9d08a3ed6346ae382df985e935fdf7389

See more details on using hashes here.

File details

Details for the file bosa_connectors_binary-0.1.1-cp313-cp313-manylinux_2_31_x86_64.whl.

File metadata

File hashes

Hashes for bosa_connectors_binary-0.1.1-cp313-cp313-manylinux_2_31_x86_64.whl
Algorithm Hash digest
SHA256 6c62f4d0cfe5d66277bfc107ba9b220cef7ea9cc90747f348e43a9059a0f1f55
MD5 e86dea5e7c2590acf009085ed24311ff
BLAKE2b-256 fac01da3a3f5b5656f5fe42892a0e6f27738404a860766f1c217276463bdb27b

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for bosa_connectors_binary-0.1.1-cp313-cp313-macosx_14_0_arm64.whl
Algorithm Hash digest
SHA256 2f28c5eeabf2f9eab8c2caa9043fc1ba9c6182f41db506d1c928407f7be16018
MD5 43d4e39e25ec9fa4bb19c8cef517cafa
BLAKE2b-256 fc2c67d82485990d280452901a267e86a37b503ae386b3b099093adeda874c29

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for bosa_connectors_binary-0.1.1-cp313-cp313-macosx_13_0_x86_64.whl
Algorithm Hash digest
SHA256 bfe03742ed43dfd64e6bc9aeb55807a51a15f6f5131c8bdd178ea144b7b82678
MD5 9def0beb0c4868b9a1699593970995ed
BLAKE2b-256 ebf9ae2e23af4f93ede850c8f4bd8ea6e2cb1bee6ba1c9a0eeb3887c8b28b1e0

See more details on using hashes here.

Provenance

The following attestation bundles were made for bosa_connectors_binary-0.1.1-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.1-cp312-cp312-win_amd64.whl.

File metadata

File hashes

Hashes for bosa_connectors_binary-0.1.1-cp312-cp312-win_amd64.whl
Algorithm Hash digest
SHA256 61d1baa991b0ef0bcfbc5bdeaecbda9cc0f40a1184bb6c971f52e541036a23e6
MD5 b0dc39fb8132667eab2f27aaa6ae5e0c
BLAKE2b-256 0446aa56face196f45017412976e582598d69e4331b8c79a370903bb1aec793e

See more details on using hashes here.

Provenance

The following attestation bundles were made for bosa_connectors_binary-0.1.1-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.1-cp312-cp312-manylinux_2_36_x86_64.whl.

File metadata

File hashes

Hashes for bosa_connectors_binary-0.1.1-cp312-cp312-manylinux_2_36_x86_64.whl
Algorithm Hash digest
SHA256 d794e6ebac556fd95f954874a626234b1a0233a2cbb825e9cf20945119747432
MD5 c45ae27e6775a18d8d23779eaeabe5da
BLAKE2b-256 6831e65ebd7b44c4b4f5cb602405c28c77718f5bd5f71ad36bfca05a31588b16

See more details on using hashes here.

File details

Details for the file bosa_connectors_binary-0.1.1-cp312-cp312-manylinux_2_31_x86_64.whl.

File metadata

File hashes

Hashes for bosa_connectors_binary-0.1.1-cp312-cp312-manylinux_2_31_x86_64.whl
Algorithm Hash digest
SHA256 fd2c9fbabc68bfc997467d918f734386bdcf9c2a849214fd7e601bb49c6d573a
MD5 7d8112423236425ceb512b0259891a92
BLAKE2b-256 a5c5526ddf8b7c18b70868930e4b71fc422bb408aa63eb76b355622ad7f47828

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for bosa_connectors_binary-0.1.1-cp312-cp312-macosx_14_0_arm64.whl
Algorithm Hash digest
SHA256 46c6778fa9d5fcdad1fd36b59d184bc2fb41fb6aa1e3c7f7870b8a66eb407eaa
MD5 b3b89c704c3f52b2e63107938cdf54e5
BLAKE2b-256 e9fe8a927bb6d8638c7aa0fce2a188793c8c07e4d38843b61d0f445af1ac0f5f

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for bosa_connectors_binary-0.1.1-cp312-cp312-macosx_13_0_x86_64.whl
Algorithm Hash digest
SHA256 a4f250ff6061ea31aad91ca9c66e66bcbc0809c0e759de7f2e7d8ba787cf3171
MD5 94b7a3947f12d8a12d027470d9be766d
BLAKE2b-256 bdf6efe0c515be7563188d656a667edcf17adc610c418901888a1455dd13dbef

See more details on using hashes here.

Provenance

The following attestation bundles were made for bosa_connectors_binary-0.1.1-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.1-cp311-cp311-win_amd64.whl.

File metadata

File hashes

Hashes for bosa_connectors_binary-0.1.1-cp311-cp311-win_amd64.whl
Algorithm Hash digest
SHA256 305765f07f4d2017ca0468537c9103ae7f5b5f1764981194671a75ffb415ae7b
MD5 d95184e28337f111c149817545062892
BLAKE2b-256 bfd6bd871f20e8cb79d7743484207974997f67c0ed1d13480e777f2f1230a1e4

See more details on using hashes here.

Provenance

The following attestation bundles were made for bosa_connectors_binary-0.1.1-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.1-cp311-cp311-manylinux_2_36_x86_64.whl.

File metadata

File hashes

Hashes for bosa_connectors_binary-0.1.1-cp311-cp311-manylinux_2_36_x86_64.whl
Algorithm Hash digest
SHA256 bb7cd6939bbfdd0dbb0e528a0c51e8d456d6ea4e46f11977d0762a4c81077f52
MD5 efb11fd949c0d729a490781242d47d48
BLAKE2b-256 1a67af48402d142411741e8350840753a9e9c174cd05a3652625192f962db1f2

See more details on using hashes here.

File details

Details for the file bosa_connectors_binary-0.1.1-cp311-cp311-manylinux_2_31_x86_64.whl.

File metadata

File hashes

Hashes for bosa_connectors_binary-0.1.1-cp311-cp311-manylinux_2_31_x86_64.whl
Algorithm Hash digest
SHA256 e651c51f4946cbf12e234dd217a3dae1b2c3f53b4e7616832577e67d2dde4093
MD5 3f829397ddd24c6d44bb8149cc5c6c7d
BLAKE2b-256 c35f34a356b3211b8059bd380163d3469d2cb72f6d5a98de94a9153f0d25bac0

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for bosa_connectors_binary-0.1.1-cp311-cp311-macosx_14_0_arm64.whl
Algorithm Hash digest
SHA256 2c47227fc2f3fc61a460bcf6de3dc26860fea64a3335ab921495e76a85cd7760
MD5 cbef83d2f3c65a701c72ea5e67a04cdb
BLAKE2b-256 26640535537a783a8f0605fc07dc591a54e4f4be103ee98963156ad12a6e5703

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for bosa_connectors_binary-0.1.1-cp311-cp311-macosx_13_0_x86_64.whl
Algorithm Hash digest
SHA256 a4bb291a2e87975a9585ce5be620ab4f1be891579dc2fb41c3e39b2d6dac9e0e
MD5 9989ec60002b63813ebfa9b31fcc16dc
BLAKE2b-256 8e10c45d83b9b14409130dde3701012b95a7b4b06cebb946d96f93229df31fe2

See more details on using hashes here.

Provenance

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

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