tinybird-python-sdk-guidelines作者: tinybirdco
Tinybird Python SDK for defining datasources, pipes, and queries in Python. Use when working with tinybird-sdk, Python Tinybird projects, or data ingestion and…
npx skills add https://github.com/tinybirdco/tinybird-agent-skills --skill tinybird-python-sdk-guidelinesTinybird Python SDK Guidelines
Guidance for using the tinybird-sdk package to define Tinybird resources in Python.
When to Apply
- Installing or configuring tinybird-sdk
- Defining datasources, pipes, or endpoints in Python
- Creating Tinybird clients in Python
- Using data ingestion or queries in Python
- Running tinybird dev/build/deploy commands for Python projects
- Migrating from legacy .datasource/.pipe files to Python
- Defining connections (Kafka, S3, GCS)
- Creating materialized views, copy pipes, or sink pipes
Rule Files
rules/getting-started.mdrules/configuration.mdrules/defining-datasources.mdrules/defining-endpoints.mdrules/client.mdrules/low-level-api.mdrules/cli-commands.mdrules/connections.mdrules/materialized-views.mdrules/copy-sink-pipes.mdrules/tokens.md
Quick Reference
- Install:
pip install tinybird-sdk - Initialize:
tinybird init - Dev mode:
tinybird dev(uses configureddev_mode, typically branch) - Build:
tinybird build(builds against configured dev target) - Deploy:
tinybird deploy(deploys to main/production) - Preview in CI:
tinybird preview - Migrate:
tinybird migrate(convert .datasource/.pipe files to Python) - Server-side only; never expose tokens in browsers
來自 tinybirdco 的更多技能
tinybird
by tinybirdco
Tinybird configuration rules, SQL patterns, and optimization guidance for datasources, pipes, endpoints, and materialized views. Covers 13 rule categories including project structure, datasource and pipe design, endpoint schemas, materialized views, copy pipes, connections, SQL best practices, and deduplication patterns Emphasizes local files as source of truth, MergeTree as default table engine, and SELECT-only SQL with strict parameter handling Provides optimization strategies: filter...
tinybird-cli-guidelines
by tinybirdco
Tinybird CLI commands, workflows, and operations. Use when running tb commands, managing local development, deploying, or working with data operations.
tinybird-typescript-sdk-guidelines
by tinybirdco
Tinybird TypeScript SDK for defining datasources, pipes, and queries with full type inference. Use when working with @tinybirdco/sdk, TypeScript Tinybird…