Tinybird Command Line Tool for managing Tinybird Workspaces, managing and deploying Data Sources, Pipes, and custom Materialized Views. The latest version is 4.5.2, with a release cadence that follows minor version increments monthly. It is the official CLI interface for Tinybird's real-time data platform.
pip install tinybirdNo compatibility data collected yet for this library.
Initialize Tinybird client with a token from environment variable and verify connectivity.
Upgrade to Python 3.10+.
Migrate from `tb` CLI calls to `tinybird.Client` in your Python scripts.
Set the environment variable `TB_TOKEN` with a valid Tinybird token, or pass it directly to the `Client` constructor.
Implement retry logic with exponential backoff. The client does not automatically handle rate limits.
Run `pip install tinybird` to install the package.
Use `from tinybird import Client` or `import tinybird; client = tinybird.Client(...)`.
Set the environment variable `TB_TOKEN` to a valid token, or pass a valid token string to the `Client` constructor.
No dependency data recorded yet.