Add your description here
Project description
beamlit
A client library for accessing Beamlit Control Plane
Usage
First, create a client:
from beamlit.authentication import (RunClientWithCredentials, load_credentials,
new_client_with_credentials)
WORKSPACE_NAME = "development"
credentials = load_credentials(WORKSPACE_NAME)
config = RunClientWithCredentials(
credentials=credentials,
workspace=WORKSPACE_NAME,
)
client = new_client_with_credentials(config)
Now call your endpoint and use your models:
from typing import List
from beamlit.api.models import list_models
from beamlit.types import Response
from beamlit.models.model import Model
with client as client:
models: List[Model] = list_models.sync(client=client)
# or if you need more info (e.g. status_code)
response: Response[List[Model]] = list_models.sync_detailed(client=client)
Or do the same thing with an async version:
from typing import List
from beamlit.api.models import list_models
from beamlit.types import Response
from beamlit.models.model import Model
async with client as client:
models: List[Model] = await list_models.asyncio(client=client)
response: Response[List[Model]] = await list_models.asyncio_detailed(client=client)
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
beamlit-0.0.27.tar.gz
(154.4 kB
view details)
Built Distribution
Filter files by name, interpreter, ABI, and platform.
If you're not sure about the file name format, learn more about wheel file names.
Copy a direct link to the current filters
beamlit-0.0.27-py3-none-any.whl
(233.6 kB
view details)
File details
Details for the file beamlit-0.0.27.tar.gz.
File metadata
- Download URL: beamlit-0.0.27.tar.gz
- Upload date:
- Size: 154.4 kB
- Tags: Source
- Uploaded using Trusted Publishing? Yes
- Uploaded via: uv/0.5.14
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
74c07d0a15bfe5d638f250294493271d8add9573c8d332177577a651838a2492
|
|
| MD5 |
f32fc1222f7df6dd813c822b11404ca0
|
|
| BLAKE2b-256 |
cf035e6bc93f48da22c4f89b45abcf3eca67d51586790e5f229e06732db80d31
|
File details
Details for the file beamlit-0.0.27-py3-none-any.whl.
File metadata
- Download URL: beamlit-0.0.27-py3-none-any.whl
- Upload date:
- Size: 233.6 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? Yes
- Uploaded via: uv/0.5.14
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
220cf2351c6c951e804b0a95c1d68ff3d35a8f11355f6f9c3a087f5313d0fb56
|
|
| MD5 |
7072663d5fe39b58585d70605a7b8280
|
|
| BLAKE2b-256 |
b0ded16296968cbd36692c9cf7bc213b18eff373cfeb73bd9e7107bfc1dfca2a
|