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.34rc56.tar.gz
(240.1 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.34rc56-py3-none-any.whl
(243.2 kB
view details)
File details
Details for the file beamlit-0.0.34rc56.tar.gz.
File metadata
- Download URL: beamlit-0.0.34rc56.tar.gz
- Upload date:
- Size: 240.1 kB
- Tags: Source
- Uploaded using Trusted Publishing? Yes
- Uploaded via: uv/0.5.21
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
1d77e29794d769a8a490d60b2d22de60c064c5c3e99b3b8939436862b8b9a0b6
|
|
| MD5 |
cfcadc1d130908413df8a0a7eae6a3a7
|
|
| BLAKE2b-256 |
19ba294f87976a2594ba165cac8877837789b382403e7115e45d43f40f4d8f26
|
File details
Details for the file beamlit-0.0.34rc56-py3-none-any.whl.
File metadata
- Download URL: beamlit-0.0.34rc56-py3-none-any.whl
- Upload date:
- Size: 243.2 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? Yes
- Uploaded via: uv/0.5.21
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
900705254570ef4c030a48dbc204fb778867e3f09dfcc707e273854686a0e7ea
|
|
| MD5 |
ed5cb118b1f6da22058eb0980ad55677
|
|
| BLAKE2b-256 |
165ca13bc5eccdcdbcf808429a2385dce61684e55d893a2c8ba6bd821390e7f2
|