Skip to main content

SDK for interacting with the Benchling Platform. Currently unsupported for production use.

Project description

Benchling SDK

A Python 3.8+ SDK for the Benchling platform.

Important! This is an unsupported pre-release not suitable for production use.

Getting Started

Installation

Install the dependency via Poetry (if applicable):

poetry add benchling-sdk

Or Pip:

pip install benchling-sdk

Using the SDK

Obtain a valid API key from your Benchling account and provide it to the SDK, along with the URL for the server. Example:

from benchling_sdk.benchling import Benchling
benchling = Benchling(url="https://my.benchling.com/api/v2", api_key="secure_api_key")

With Benchling now instantiated, make a sample call to all requests with the schema ID assaych_test:

requests = benchling.requests.list_all("assaych_test")

In general, API calls are synchronous and blocking.

Generators

Some methods which call paginated API endpoints will produce Python generators. Example:

requests_generator = benchling.requests.list("assaych_test")
next_request = next(requests_generator)

Error Handling

Failed API interactions will generally return a BenchlingError, which will contain some underlying information on the HTTP response such as the status. Example:

from benchling_sdk.errors import BenchlingError

try:
    requests = benchling.requests.list_all("assaych_test")
except BenchlingError as error:
    print(error.status_code)

Project details


Release history Release notifications | RSS feed

Download files

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

Source Distribution

benchling-sdk-0.2.0a0.tar.gz (17.4 kB view hashes)

Uploaded Source

Built Distribution

benchling_sdk-0.2.0a0-py3-none-any.whl (29.0 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