ETL Frameworks
Transform Data in Your Warehouse
★ 4.9
CLI Data Integration Tool
★ 4.2
pip install dbt-corepip install slingpip install dbt-corepip install slingData engineers use dbt to manage all transformation logic inside the warehouse — writing SELECT statements as `.sql` model files that dbt compiles and runs in the right order. Python engineers also write custom dbt tests and macros in Python, and use dbt's Python models feature to run pandas or Spark logic alongside SQL in the same project.
Python data engineers use Sling via its Python SDK or CLI subprocess calls to replicate tables between databases or load files into warehouses. A common use case is syncing a production PostgreSQL table into Snowflake for analytics — Sling handles chunking, type mapping, and incremental state without requiring any custom Python ingestion code.
Individual Tool Pages