Creates and maintains dlt (data load tool) pipelines from APIs, databases, and other sources. Use when the user wants to build or debug pipelines; use verified sources (e.g...
Choose pipeline type with the decision tree below; then follow the Core Workflow.
Quick start: 1) Use the decision tree. 2) Follow the Core Workflow. 3) Use patterns and references as needed.
When a user requests a dlt pipeline, determine which type to create:
START: User wants to create a dlt pipeline
ā
āāā Is there a dlt verified source available for this platform?
ā (Check: https://dlthub.com/docs/dlt-ecosystem/verified-sources)
ā ā
ā YES ā Use VERIFIED SOURCE approach
ā ā Examples: Salesforce, GitHub, Stripe, HubSpot, Slack
ā ā Action: Guide user through `dlt init <source> <destination>`
ā ā
ā NO ā Continue to next question
ā
āāā Is this a REST API with standard patterns?
ā (Standard auth, pagination, JSON responses)
ā ā
ā YES ā Use DECLARATIVE REST API approach
ā ā Examples: Pokemon API, simple REST APIs with clear endpoints
ā ā Action: Create config-based pipeline with rest_api_source
ā ā
ā NO ā Continue to next question
ā
āāā Does this require custom logic or Python packages?
ā
YES ā Use CUSTOM PYTHON approach
Examples: Python packages (simple-salesforce), complex transformations,
non-standard APIs, custom data sources
Action: Create custom source with @dlt.source and @dlt.resource decorators
Ask clarifying questions:
Based on the decision tree above, select:
dlt init <source_name> <destination_name>
Examples:
dlt init salesforce bigquerydlt init github duckdbdlt init stripe snowflakeUse templates from this skill's assets/templates/ (copy into the project if needed):
declarative_rest_pipeline.py - For REST APIscustom_python_pipeline.py - For custom sourcesRecommended: Use the helper script (detects pip/uv/poetry):
python scripts/install_packages.py --destination <destination_name>
Manual: pip install "dlt[<destination>,workspace]" (e.g. bigquery, snowflake). For DuckDB use dlt[workspace] only. The workspace extra is required for dlt pipeline <name> show and the dashboard.
Create or update .dlt/secrets.toml:
Structure:
[sources.<source_name>]
# Source credentials here
[destination.<destination_name>]
# Destination credentials here
Use the template: assets/templates/.dlt/secrets.toml
Important: Remind user to add .dlt/secrets.toml to .gitignore!
Note for DuckDB: DuckDB doesn't require credentials in secrets.toml. Just specify the database file path in the pipeline or config.toml.
Create or update .dlt/config.toml for non-sensitive settings:
[sources.<source_name>]
base_url = "https://api.example.com"
timeout = 30
[destination.<destination_name>]
location = "US"
Use the template: assets/templates/.dlt/config.toml
Flesh out the pipeline code based on requirements:
For verified sources:
.with_resources().apply_hints()For Declarative REST API:
For Custom Python:
@dlt.source and @dlt.resource functionsFor pipelines that should load only new/changed data:
mergeSee: references/incremental-loading.md
python <pipeline_file>.py
Check for errors and verify data is loaded correctly.
Prerequisite: Ensure dlt[workspace] is installed (included by default when using install_packages.py).
Open the dlt dashboard to inspect loaded data:
dlt pipeline <pipeline_name> show
Or use the helper script:
python scripts/open_dashboard.py <pipeline_name>
from salesforce import salesforce_source
source = salesforce_source()
pipeline = dlt.pipeline(
pipeline_name='salesforce_pipeline',
destination='bigquery',
dataset_name='salesforce_data'
)
# Load only specific Salesforce objects
pipeline.run(source.with_resources("Account", "Opportunity", "Contact"))
from dlt.sources.rest_api import rest_api_source
config = {
"client": {
"base_url": "https://pokeapi.co/api/v2/",
},
"resources": [
"pokemon",
{
"name": "pokemon_details",
"endpoint": "pokemon/{name}",
"write_disposition": "merge",
"primary_key": "id"
}
]
}
pipeline = dlt.pipeline(
pipeline_name="pokemon",
destination="duckdb",
dataset_name="pokemon_data"
)
pipeline.run(rest_api_source(config))
import dlt
from simple_salesforce import Salesforce
@dlt.source
def salesforce_custom(username=dlt.secrets.value, password=dlt.secrets.value):
sf = Salesforce(username=username, password=password)
@dlt.resource(write_disposition='merge', primary_key='Id')
def accounts():
records = sf.query_all("SELECT Id, Name FROM Account")
yield records['records']
return accounts
pipeline = dlt.pipeline(
pipeline_name='salesforce_custom',
destination='duckdb',
dataset_name='salesforce'
)
pipeline.run(salesforce_custom())
config = {
"client": {
"base_url": "https://api.github.com/repos/dlt-hub/dlt/",
"auth": {"token": dlt.secrets["github_token"]}
},
"resources": [
{
"name": "issues",
"endpoint": {
"path": "issues",
"params": {
"state": "all",
"since": "{incremental.start_value}"
}
},
"incremental": {
"cursor_path": "updated_at",
"initial_value": "2024-01-01T00:00:00Z"
},
"write_disposition": "merge",
"primary_key": "id"
}
]
}
Use non-endpoint resources (e.g. Database-Seeded or File-Seeded parameters) to drive REST API calls from a database, file, or other non-API source. Pre-fetch data outside the dlt pipeline context to avoid dlt.attach() / context conflicts. The seed resource must yield a list of dicts so each row drives one API request.
import duckdb
import dlt
from dlt.sources.rest_api import rest_api_source
# 1. Pre-fetch data from database (outside dlt context)
def get_locations():
conn = duckdb.connect("locations.duckdb", read_only=True)
result = conn.execute("SELECT id, lat, lng FROM locations").fetchall()
conn.close()
return [{"id": r[0], "lat": r[1], "lng": r[2]} for r in result]
# 2. Create seed resource
@dlt.resource(selected=False)
def locations():
yield get_locations() # Yield as LIST
# 3. Configure REST API with resolve
config = {
"client": {"base_url": "https://api.weather.com/"},
"resources": [
locations(),
{
"name": "weather",
"endpoint": {
"path": "forecast",
"params": {
"lat": "{resources.locations.lat}",
"lng": "{resources.locations.lng}"
},
"data_selector": "$",
"paginator": "single_page"
},
"include_from_parent": ["id"],
"primary_key": "_locations_id"
}
]
}
source = rest_api_source(config)
pipeline = dlt.pipeline(
pipeline_name="weather",
destination="duckdb",
dataset_name="weather_data"
)
pipeline.run(source)
See: references/rest-api-source.md (Non-REST Endpoint Resources, Query/Path Params, Single-Object Responses, include_from_parent).
.dlt/secrets.toml; never hardcode; add to .gitignoreappend (events), merge (stateful), replace (snapshots)See references/performance-tuning.md, references/incremental-loading.md, and references/troubleshooting.md for more.
Auth (OAuth2): In REST config use "auth": {"type": "oauth2_client_credentials", ...}. For custom Python use dlt.sources.helpers.rest_client.auth.OAuth2ClientCredentials with paginate(). See references/rest-api-source.md.
Custom pagination / nested data / performance: See references/rest-api-source.md, references/custom-sources.md, references/performance-tuning.md.
workspace). Run when setting up a new project or adding a destination.dlt pipeline <name> show). Run after a pipeline run to inspect loaded data..dlt/secrets.toml and provide .gitignore