Tinybird CLI is a command-line tool for interacting with the Tinybird platform, used for data ingestion, query execution, and workspace management. Current version 6.4.1 supports Python <3.14,>=3.10, with quarterly releases.
pip install tinybird-cliNo compatibility data collected yet for this library.
Initialize the client with a Tinybird token from the TB_TOKEN environment variable and list workspaces.
Update imports: from tinybird_cli import ... instead of from tinybird import ...
Replace `os.environ.get('TB_TOKEN')` with explicit `Auth(token=...)` instantiation.Refer to the official Python SDK docs for method signatures instead of CLI help.
Install the correct package: pip install tinybird-cli, then import from tinybird_cli import ...
Use `from tinybird_cli import Auth, WorkspaceClient` and construct with `Auth(token=...)`.
No dependency data recorded yet.