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.14.tar.gz
(54.8 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.14-py3-none-any.whl
(202.6 kB
view details)
File details
Details for the file beamlit-0.0.14.tar.gz.
File metadata
- Download URL: beamlit-0.0.14.tar.gz
- Upload date:
- Size: 54.8 kB
- Tags: Source
- Uploaded using Trusted Publishing? Yes
- Uploaded via: uv/0.5.5
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
35d0712d28810f7a49993a31bcc2e22f909a56f72584bfec190a946b288b8512
|
|
| MD5 |
a8fefc1e01c34f5942f6c236cbb5bd76
|
|
| BLAKE2b-256 |
142cc18857cff232c46038df8823a216caba8c78358a5cb9a4b98113baf9b64f
|
File details
Details for the file beamlit-0.0.14-py3-none-any.whl.
File metadata
- Download URL: beamlit-0.0.14-py3-none-any.whl
- Upload date:
- Size: 202.6 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? Yes
- Uploaded via: uv/0.5.5
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
484ec2d9090d69af13ba2e2bf519d1574c3fae766dcaf9bec974f804eb68851f
|
|
| MD5 |
fc0c631627fc59fc1c59fa252332145a
|
|
| BLAKE2b-256 |
615c4e80359cd7b919f3a8472bc08267344659de502f5891bb83e75571b82001
|