From 04abb895d7142558fc3c12f807af12ec843ea75d Mon Sep 17 00:00:00 2001 From: Aman Gupta <98139823+dat-a-man@users.noreply.github.com> Date: Mon, 11 May 2026 07:57:29 +0000 Subject: [PATCH 1/2] Updated --- README.md | 7 +++++++ 1 file changed, 7 insertions(+) diff --git a/README.md b/README.md index 6519d26383..4df4f54192 100644 --- a/README.md +++ b/README.md @@ -50,6 +50,7 @@ An opinionated guide to the best Python frameworks, libraries, tools, and resour **Data & Science** - [Data Analysis](#data-analysis) +- [Data Ingestion / ETL](#data-ingestion--etl) - [Data Validation](#data-validation) - [Data Visualization](#data-visualization) - [Geolocation](#geolocation) @@ -484,6 +485,12 @@ _Libraries for data analysis._ - [lumibot](https://github.com/Lumiwealth/lumibot) - Algorithmic trading framework for backtesting and live deployment across stocks, options, crypto, futures, and forex. - [openbb](https://github.com/OpenBB-finance/OpenBB) - A financial data platform for analysts, quants and AI agents. - [yfinance](https://github.com/ranaroussi/yfinance) - Easy Pythonic way to download market and financial data from Yahoo Finance. + +### Data Ingestion / ETL + +_Libraries for extracting data from external sources and loading it into databases, warehouses, and lakehouses._ + +- [dlt](https://github.com/dlt-hub/dlt) - A Python library for building data pipelines with automatic schema inference, incremental loading, and support for multiple sources and destinations. ### Data Validation From e503d16eb26a1253ad677c9a8f09c6842beb40d3 Mon Sep 17 00:00:00 2001 From: Ankita Ghosh Date: Mon, 11 May 2026 15:30:27 +0530 Subject: [PATCH 2/2] fix: remove duplicate ruff entry from Code Linters section (#3119) --- README.md | 1 - 1 file changed, 1 deletion(-) diff --git a/README.md b/README.md index 4df4f54192..1d019d0292 100644 --- a/README.md +++ b/README.md @@ -612,7 +612,6 @@ _Tools of static analysis, linters and code quality checkers. Also see [awesome- - [flake8](https://github.com/PyCQA/flake8) - A wrapper around `pycodestyle`, `pyflakes` and McCabe. - [awesome-flake8-extensions](https://github.com/DmytroLitvinov/awesome-flake8-extensions) - [pylint](https://github.com/pylint-dev/pylint) - A fully customizable source code analyzer. - - [ruff](https://github.com/astral-sh/ruff) - An extremely fast Python linter and code formatter. - Code Formatters - [black](https://github.com/psf/black) - The uncompromising Python code formatter. - [isort](https://github.com/PyCQA/isort) - A Python utility / library to sort imports.