basetenlabs/baseten-python
Python
Captured source
source ↗published Mar 27, 2026seen 5dcaptured 11hhttp 200method plain
basetenlabs/baseten-python
Description: Python SDK for Baseten
Language: Python
License: MIT
Stars: 1
Forks: 0
Open issues: 3
Created: 2026-03-27T20:55:18Z
Pushed: 2026-06-08T20:38:49Z
Default branch: main
Fork: no
Archived: no
README:
Baseten Python SDK
Python SDK for Baseten. See the API documentation and [usage](#usage) below.
⚠️ Under active development. Nothing should be considered stable at this time.
Usage
Current SDK only has barebones client. Here is usage example of the barebones underlying client:
from baseten.client import ManagementClient with ManagementClient(api_key="my-api-key") as client: for model in client.api.get_models().models: print(model.name)
Or for async:
from baseten.client import AsyncManagementClient async with AsyncManagementClient(api_key="my-api-key") as client: for model in (await client.api.get_models()).models: print(model.name)
Upgrading from 0.8.2 and earlier
Version 0.9.0 is a rewrite and shares no API with the earlier baseten releases. Code written against 0.8.2 or earlier will not work. Pin baseten<0.9 to keep it.
Notability
notability 2.0/10Low stars, new repo