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.54rc100.tar.gz
(313.0 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.54rc100-py3-none-any.whl
(270.5 kB
view details)
File details
Details for the file beamlit-0.0.54rc100.tar.gz.
File metadata
- Download URL: beamlit-0.0.54rc100.tar.gz
- Upload date:
- Size: 313.0 kB
- Tags: Source
- Uploaded using Trusted Publishing? Yes
- Uploaded via: uv/0.5.28
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
0c8c10bbbbe1e950bcddd3ce318fa7a9ec947d2aabdcb570f95c1509d159f2dc
|
|
| MD5 |
1b663d75480097445716305a07166f50
|
|
| BLAKE2b-256 |
cebac2de247366bb8abfaae1e468cd98d85bfa956f1caf72c171d89e1a385fee
|
File details
Details for the file beamlit-0.0.54rc100-py3-none-any.whl.
File metadata
- Download URL: beamlit-0.0.54rc100-py3-none-any.whl
- Upload date:
- Size: 270.5 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? Yes
- Uploaded via: uv/0.5.28
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
81a1b9b01a15c65668f85aa612e195ce72d4b1140b2f38b99335e63e12b9b770
|
|
| MD5 |
2e756f0adf9db4f008a8350821f24ab0
|
|
| BLAKE2b-256 |
2e8b4afaf98fa7cbbc09565ebdf784c9eeb801fc3dc87f101078e80c27a782c3
|