dlt is an open-source python-first scalable data loading library that does not require any backend to run.
Project description
data load tool (dlt) — the open-source Python library for data loading
Be it a Google Colab notebook, AWS Lambda function, an Airflow DAG, your local laptop,
or a GPT-4 assisted development playground—dlt can be dropped in anywhere.
🚀 Join our thriving community of likeminded developers and build the future together!
Installation
dlt supports Python 3.8+.
pip install dlt
More options: Install via Conda or Pixi
Quick Start
Load chess game data from chess.com API and save it in DuckDB:
import dlt
from dlt.sources.helpers import requests
# Create a dlt pipeline that will load
# chess player data to the DuckDB destination
pipeline = dlt.pipeline(
pipeline_name='chess_pipeline',
destination='duckdb',
dataset_name='player_data'
)
# Grab some player data from Chess.com API
data = []
for player in ['magnuscarlsen', 'rpragchess']:
response = requests.get(f'https://api.chess.com/pub/player/{player}')
response.raise_for_status()
data.append(response.json())
# Extract, normalize, and load the data
pipeline.run(data, table_name='player')
Try it out in our Colab Demo
Features
- Automatic Schema: Data structure inspection and schema creation for the destination.
- Data Normalization: Consistent and verified data before loading.
- Seamless Integration: Colab, AWS Lambda, Airflow, and local environments.
- Scalable: Adapts to growing data needs in production.
- Easy Maintenance: Clear data pipeline structure for updates.
- Rapid Exploration: Quickly explore and gain insights from new data sources.
- Versatile Usage: Suitable for ad-hoc exploration to advanced loading infrastructures.
- Start in Seconds with CLI: Powerful CLI for managing, deploying and inspecting local pipelines.
- Incremental Loading: Load only new or changed data and avoid loading old records again.
- Open Source: Free and Apache 2.0 Licensed.
Ready to use Sources and Destinations
Explore ready to use sources (e.g. Google Sheets) in the Verified Sources docs and supported destinations (e.g. DuckDB) in the Destinations docs.
Documentation
For detailed usage and configuration, please refer to the official documentation.
Examples
You can find examples for various use cases in the examples folder.
Adding as dependency
dlt
follows the semantic versioning with the MAJOR.MINOR.PATCH
pattern.
major
means breaking changes and removed deprecationsminor
new features, sometimes automatic migrationspatch
bug fixes
We suggest that you allow only patch
level updates automatically:
- Using the Compatible Release Specifier. For example dlt~=1.0 allows only versions >=1.0 and less than <1.1
- Poetry caret requirements. For example ^1.0 allows only versions >=1.0 to <1.0
Get Involved
The dlt project is quickly growing, and we're excited to have you join our community! Here's how you can get involved:
- Connect with the Community: Join other dlt users and contributors on our Slack
- Report issues and suggest features: Please use the GitHub Issues to report bugs or suggest new features. Before creating a new issue, make sure to search the tracker for possible duplicates and add a comment if you find one.
- Track progress of our work and our plans: Please check out our public Github project
- Contribute Verified Sources: Contribute your custom sources to the dlt-hub/verified-sources to help other folks in handling their data tasks.
- Contribute code: Check out our contributing guidelines for information on how to make a pull request.
- Improve documentation: Help us enhance the dlt documentation.
License
dlt
is released under the Apache 2.0 License.
Project details
Release history Release notifications | RSS feed
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
Built Distribution
File details
Details for the file dlt-1.3.1a2.tar.gz
.
File metadata
- Download URL: dlt-1.3.1a2.tar.gz
- Upload date:
- Size: 663.7 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: poetry/1.7.1 CPython/3.8.11 Linux/5.15.153.1-microsoft-standard-WSL2
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | ff7ba47cd9931f98a23dd7ff347eac9d10c86598a7e2483d239440af49eaafbd |
|
MD5 | 18eda1f73ce99b67e7dd7f06f8abbaeb |
|
BLAKE2b-256 | 3eef6e5c490ce4d0a58f00ab9cba1c386e30b4917f334457f61b196f3245d7a8 |
File details
Details for the file dlt-1.3.1a2-py3-none-any.whl
.
File metadata
- Download URL: dlt-1.3.1a2-py3-none-any.whl
- Upload date:
- Size: 840.9 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: poetry/1.7.1 CPython/3.8.11 Linux/5.15.153.1-microsoft-standard-WSL2
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 43fe740f681eaad81fc4bcaa10c05d413ac37fdc51f6ecd1b2d927fc4ad054c4 |
|
MD5 | ecac36ac75ec930d04157339dcd74ffb |
|
BLAKE2b-256 | 956dbd86e02b22abe24437684096d29e6bd6b2127339bfec8a440265afcc1c44 |