skillfed

dagster-dlt

Package for performing ETL/ELT tasks with dlt in Dagster.

dagster-dlt v0.29.18 357.3K downloads/30d#7,271 on PyPI15,996
Permissive license Apache-2.0 Active released

What it is and what it does

dagster-dlt is a Dagster integration library that brings dlt's data loading capabilities into Dagster's asset-oriented orchestration model. It allows you to define dlt sources and destinations as Dagster assets, so they run within Dagster's scheduling, monitoring, and lineage tracking system. The package requires Python 3.10 or later and depends on both dagster and dlt as runtime libraries.

You use it when you want dlt's lightweight, source-to-destination data loading to be part of a larger Dagster data platform—where you need unified orchestration, observability, and asset management across your entire data stack. It sits between dlt's extraction-and-load simplicity and Dagster's declarative asset graph, letting you compose dlt jobs alongside other Dagster assets in a single Python codebase.

Use it for:

  • Build an ELT pipeline where dlt handles extraction and loading while Dagster orchestrates and monitors the full asset graph.
  • Integrate dlt sources (e.g., Salesforce, Stripe) into a Dagster asset as part of a larger data warehouse workflow.
  • Combine dlt's connector library with Dagster's testing and CI/CD tooling for reliable, repeatable data ingestion.
  • Track data lineage and quality across dlt-loaded assets using Dagster's built-in observability and asset catalog.

Worth the install?

AI-flagged interpretation of the facts on this page — verify before relying

Integrates dlt data loading into Dagster pipelines, enabling declarative ETL/ELT workflows where dlt sources and destinations are orchestrated as Dagster assets.

Yes. This is a lightweight, actively maintained integration with no security issues, permissive licensing, and low install friction. Install it if you are already using both Dagster and dlt and want to orchestrate dlt jobs as first-class Dagster assets rather than external processes.

Install

dagster-dlt on PyPI

pip

pip install dagster-dlt

uv

uv add dagster-dlt

poetry

poetry add dagster-dlt

Installing dagster-dlt

Before you install

Low friction install with two runtime dependencies (dagster and dlt). Package is actively maintained with a recent release and no known vulnerabilities.

License in practice

Apache-2.0 permissive license allows commercial and private use with minimal restrictions; you may use, modify, and distribute the package freely provided you include the license notice.

Quickstart

pip install dagster-dlt

import dagster as dg
from dagster_dlt import DagsterDltResource

@dg.asset
def my_dlt_asset(dlt_resource: DagsterDltResource):
    # Use dlt_resource to load data via dlt pipeline
    pass

Requires Python 3.10 or later; both dagster and dlt must be installed and configured in your environment.

Verify before relying

  • Specific dlt sources and destinations supported by this integration version
  • Performance characteristics when orchestrating large-scale dlt pipelines
  • Whether asset lineage and observability work across dlt and Dagster layers

Package facts

License Apache-2.0 (permissive)
Python support supports the current Python release (<3.15,>=3.10)
Install friction low — pure-Python wheel
Runtime dependencies 2 — dagster, dlt
Maintenance actively maintained — 0 days since the last release
Last repo commit
First released
Downloads 357,260/month — #7,271 on PyPI (30-day window, as of 2026-08-14)
Known vulnerabilities none known (OSV.dev, checked 2026-08-14)

Evidence: dagster_dlt-0.29.18-py3-none-any.whl

Tags

dlt integration for dagsteretl orchestration with dltdata loading in dagsterdagster dlt assetselt pipeline orchestrationdeclarative data pipelines
data-orchestrationetl-eltintegration

More Distributed Computing packages