Skip to main content

Python api client for accessing the Labguru Electronic Lab Notebook.

Project description

labguru-api-client

Python api client for accessing the Labguru Electronic Lab Notebook.

This package contains two main groups of code:

  1. Generated code from the OpenAPI spec for the Labguru API, using openapi-python-client. This code is in the labguru_api_client directory.
  2. Wrapper functions around the generated code to make it easier to use. This part is still in development.

Installing

You can install this package using pip:

pip install labguru-api-client

Usage (wrapper functions)

Wrapper functions are under active development and are expected to change. For now, a few experiment-related fucntions have been defined.

from labguru_wrapper.labguru_api import LabguruAPI

# define env vars in ~/.labguru.env
# LABGURU_API_KEY is required
# LABGURU_BASE_URL is optional
labguru = LabguruAPI()

exp1_1 = labguru.get_experiment(1)
# returned object will be a dict/json representation of the experiment
print(exp1_1["title"])

exp1_updated = labguru.update_experiment(1, {"title": "Modified title"})
assert labguru.get_experiment(1)["title"] == "Modified_title"

Usage (generated code)

Create a client and make an example request to get an experiment by id. Your Labguru API key should be stored in an environment variable called LABGURU_API_KEY. Extracing information from the response can be done by parsing the response.content attribute. The Labguru openAPI spec did not include a response model for their endpoints, so response.parsed will be None.

import json
from labguru_api_client import Client
from labguru_api_client.api.experiments import get_api_v1_experiments_id

client = Client(base_url="https://my.labguru.com/")
exp_1 = get_api_v1_experiments_id.sync_detailed(client=client, token=os.getenv("LABGURU_API_KEY"), id=1)
if exp_1.status_code == 200:
    print(json.loads(exp_1.content)["title"])

To update or create an experiment, use the generated models to create a body for the request.

import json
from labguru_api_client import Client
from labguru_api_client.api.experiments import put_api_v1_experiments_id
from labguru_api_client.models import UpdateExperimentItem, UpdateExperiment

updated_experiment_item = UpdateExperimentItem.from_dict({
    "title": "My new title"
})
updated_experiment = UpdateExperiment(token=os.getenv("LABGURU_API_KEY"), item=updated_experiment_item)

exp_1_put = put_api_v1_experiments_id.sync_detailed(client=client, id=1, body=updated_experiment)
exp_1_updated = get_api_v1_experiments_id.sync_detailed(client=client, token=os.getenv("LABGURU_API_KEY"), id=1)
if exp_1_put.status_code == 200 and exp_1_updated.status_code == 200:
    assert json.loads(exp_1_updated.content)["title"] == "My new title"

Things to know:

  1. Every path/method combo becomes a Python module with four functions:

    1. sync: Blocking request that returns parsed data (if successful) or None
    2. sync_detailed: Blocking request that always returns a Request, optionally with parsed set if the request was successful.
    3. asyncio: Like sync but async instead of blocking
    4. asyncio_detailed: Like sync_detailed but async instead of blocking
  2. All path/query params, and bodies become method arguments.

  3. If your endpoint had any tags on it, the first tag will be used as a module name for the function (my_tag above)

  4. Any endpoint which did not have a tag will be in labguru_api_client.api.default

Advanced customizations

There are more settings on the generated Client class which let you control more runtime behavior, check out the docstring on that class for more info. You can also customize the underlying httpx.Client or httpx.AsyncClient (depending on your use-case):

from labguru_api_client import Client

def log_request(request):
    print(f"Request event hook: {request.method} {request.url} - Waiting for response")

def log_response(response):
    request = response.request
    print(f"Response event hook: {request.method} {request.url} - Status {response.status_code}")

client = Client(
    base_url="https://my.labguru.com",
    httpx_args={"event_hooks": {"request": [log_request], "response": [log_response]}},
)

# Or get the underlying httpx client to modify directly with client.get_httpx_client() or client.get_async_httpx_client()

You can even set the httpx client directly, but beware that this will override any existing settings (e.g., base_url):

import httpx
from labguru_api_client import Client

client = Client(
    base_url="https://my.labguru.com",
)
# Note that base_url needs to be re-set, as would any shared cookies, headers, etc.
client.set_httpx_client(httpx.Client(base_url="https://my.labguru.com", proxies="http://localhost:8030"))

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

labguru_api_client-0.1.1.tar.gz (113.4 kB view details)

Uploaded Source

Built Distribution

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

labguru_api_client-0.1.1-py3-none-any.whl (615.0 kB view details)

Uploaded Python 3

File details

Details for the file labguru_api_client-0.1.1.tar.gz.

File metadata

  • Download URL: labguru_api_client-0.1.1.tar.gz
  • Upload date:
  • Size: 113.4 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: poetry/1.8.3 CPython/3.10.12 Linux/6.5.0-1025-oem

File hashes

Hashes for labguru_api_client-0.1.1.tar.gz
Algorithm Hash digest
SHA256 66ce0748b996e364ad1c9727341a8c40b1750c3f4d398cd1ffacf0c31b991440
MD5 b5fd2c6997a7e869323961a525fe7bac
BLAKE2b-256 f475c856160ed2ab88441d7b0df6dba11ce70798cfaa733a674dc0514690b76a

See more details on using hashes here.

File details

Details for the file labguru_api_client-0.1.1-py3-none-any.whl.

File metadata

  • Download URL: labguru_api_client-0.1.1-py3-none-any.whl
  • Upload date:
  • Size: 615.0 kB
  • Tags: Python 3
  • Uploaded using Trusted Publishing? No
  • Uploaded via: poetry/1.8.3 CPython/3.10.12 Linux/6.5.0-1025-oem

File hashes

Hashes for labguru_api_client-0.1.1-py3-none-any.whl
Algorithm Hash digest
SHA256 a7a7725f37df7cd5282aa05fc0f989734bf2982e09669b56180d5de83b498eb9
MD5 d4d325baa1a2762bb613fff064e83c46
BLAKE2b-256 0ab61f384cf591a816ed63ed30f7f36bd8278fb7a119101a8662d0368344ed1f

See more details on using hashes here.

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