Registry / aws / tobiko-cloud-helpers

tobiko-cloud-helpers

JSON →
library202616.4.0pypypiunverified

Tobiko Cloud Helpers is a Python SDK for interacting with Tobiko Cloud services, including authentication, API calls, and data pipeline management. Version 202616.4.0 supports Python 3.9-3.12. Released frequently (weekly), with breaking changes tied to version bumps.

pip install tobiko-cloud-helpers
INSTALL
IMPORT
SIG · TOBIKO-CLOUD-HELPE
T
tobiko-cloud-helpers
awspythonv202616.4.0
harness data pending
Install & Compatibility
Where this runs

No compatibility data collected yet for this library.

Code
Verified usage

Verified import paths — ran on the pinned version, not inferred.

TobikoClient
✓ from tobikodata import TobikoClient
✗ from tobiko_cloud_helpers import TobikoClient

Initialize the Tobiko client and list projects.

import os from tobiko_cloud_helpers import TobikoClient # Set your API key via environment variable or directly client = TobikoClient(api_key=os.environ.get('TOBIKO_API_KEY', '')) result = client.list_projects() print(result)
Debug
Known issues
breakingMajor version bumps (e.g., 202xxxx.xx) may introduce breaking API changes. Always pin your version and test upgrades in a staging environment.
fix
Pin version in requirements.txt: tobiko-cloud-helpers==202616.4.0
affects: All
deprecatedThe `TobikoClient` constructor no longer accepts a `region` parameter as of 202605.0.0. Use `base_url` instead.
fix
Update to: TobikoClient(api_key=..., base_url='...')
affects: >=202605.0.0
gotchaThe `list_projects()` method returns a generator; you must convert it to a list to access indexes or iterate multiple times.
fix
projects = list(client.list_projects())
affects: All
gotchaAPI keys are passed as a parameter without the 'Bearer ' prefix; the SDK automatically adds it.
fix
Do not prepend 'Bearer '; just provide the raw key.
affects: All
Upgrade
Version history
202616.4.0latest on PyPI · released Apr 18, 2026
Audit
Dependencies
requestsrequiredHTTP client for API calls
pydanticrequiredData validation and settings management
Agent activity
49 hits · last 30 days
node
44
OpenAI (training)
1
Resources