dbt-coreEasy Examples

Data build tool: transform data in your warehouse with SQL

Getting started with dbt-core

Installation and basic usage of dbt-core.

python
# Install: pip install dbt-core
import dbt_core

# Basic dbt-core usage
print(f"Using dbt-core")
# See documentation for detailed examples
Expected Output
# Expected output shown below
# (Run locally with: dbt_core)

dbt-core is a third-party package. Data build tool: transform data in your warehouse with SQL. Install with: pip install dbt-core

Common dbt-core operations

Frequently used features of dbt-core.

python
# Install: pip install dbt-core
import dbt_core

# Common dbt-core patterns
print(f"dbt-core version: {dbt_core.__version__}")

These are the most commonly used features of dbt-core in everyday development.

Want to try these examples interactively?

Open Easy Playground