pandas

The Python DataFrame library for fast, flexible, and expressive data analysis and manipulation.

Library
PyPI
v3.0.5
49,516stars
BSD 3-Clause License

Repository Health

Pre-computed score based on development activity, maintenance, community, maturity, and trend momentum.How we score it →
98/100Excellent
Development Activity100
Maintenance96
Community96
Maturity60
Momentum40

Technical Analysis

AI-assessed by reading the actual repository — architecture, code quality, innovation, and documentation.How we score it →
84/100Excellent
Architecture94
Code Quality92
Innovation88
Learning Curve62

pandas is the de facto standard library for tabular and time-series data in Python, providing the DataFrame and Series structures that most of the Python data ecosystem — from Jupyter notebooks to production ETL pipelines — is built on top of. It handles labeled data alignment, missing-value handling, group-by aggregation, merging/joining, reshaping, and time-series resampling with an API that’s grown into a de facto standard imitated by libraries like Polars and Dask.

Under the hood, performance-critical operations (hashing, grouping, indexing, joins) are implemented in Cython and C, wrapped by a Python-facing API that interoperates directly with NumPy arrays and, increasingly, Arrow-backed extension types. It’s used everywhere from one-off data exploration scripts to the core of production data pipelines at companies of every size.

What You Get

  • DataFrame and Series objects with label-based indexing, automatic data alignment, and hierarchical (MultiIndex) support
  • Robust I/O for CSV, Excel, JSON, SQL, Parquet, HDF5, and other flat-file and database formats
  • Powerful split-apply-combine group-by functionality for aggregating and transforming datasets
  • Flexible reshaping and pivoting (melt, pivot_table, stack/unstack) for wide/long conversions
  • Built-in time-series tooling: date-range generation, frequency conversion, resampling, and rolling-window statistics
  • Vectorized, NumPy-backed numerical operations with nullable and Arrow-backed extension dtypes

Common Use Cases

  • Exploratory data analysis and cleaning in Jupyter notebooks ahead of modeling or visualization
  • ETL and batch data pipelines that ingest CSV/SQL/Parquet sources, transform them, and write results downstream
  • Feature engineering and preprocessing for machine-learning workflows feeding into scikit-learn or similar
  • Financial and time-series analysis — resampling, rolling statistics, and date-aligned joins across series
  • Ad hoc reporting and aggregation over tabular data pulled from databases or APIs

Under The Hood

Architecture pandas is organized around two public data structures, Series (pandas/core/series.py) and DataFrame (pandas/core/frame.py, ~19.5k lines), both subclassing shared behavior in NDFrame (pandas/core/generic.py, ~12.7k lines) for indexing, alignment, and I/O dispatch. Below the public API, pandas/core/internals manages the actual data as a BlockManager of homogeneously-typed blocks so mixed-dtype DataFrames avoid the overhead of a fully object-typed 2-D array, and pandas/_libs (Cython/C extension modules — algos, groupby, hashtable, indexing, internals, tslibs) implements the performance-critical inner loops for hashing, grouping, and index alignment that the Python layer calls into. I/O for each format lives under pandas/io (csv, excel, sql, parquet, json, etc.), each producing a DataFrame through the same construction path. Tech Stack Core dependencies are NumPy (array backend and dtype system) and python-dateutil (date parsing), with tzdata required on Windows/Emscripten; the build uses meson-python plus Cython (>3.1,<4) to compile the _libs extension modules, and versioneer for version management from git tags. Optional extras (pandas[computation], pandas[performance], pandas[plot], etc., declared in pyproject.toml) pull in numexpr, bottleneck, matplotlib, pyarrow, and other domain-specific dependencies without forcing them on every installation. Code Quality The test suite under pandas/tests spans 1,124+ files covering the public API surface, dtype edge cases, and platform-specific behavior; CI (unit-tests.yml) runs this matrix across Python and NumPy versions with coverage tracked via Codecov. Core modules consistently use from __future__ import annotations with an accompanying typings/ stub directory and a [tool.mypy] configuration enforcing static analysis over the pandas and typings trees, and a pyright_reportGeneralTypeIssues.json baseline for incremental Pyright adoption — signals of a codebase actively tightening its type-safety net despite its size and age. API Design The Series/DataFrame method surface favors chainable, vectorized operations (.groupby().agg(), .merge(), .pivot_table()) over explicit loops, and label-based indexing (.loc/.iloc) is consistent across both structures. The tradeoff for that breadth is a large API surface with historically accumulated method aliases and configuration options (pandas.options), which raises the learning curve for newcomers even though the official documentation and 30k+ Stack Overflow-tagged questions make most patterns easy to look up.

Used by 57 apps in this directory

Python
99%
MIT

Agent Lightning

AI Development

17,500

A Microsoft-built training framework that optimizes AI agents with reinforcement learning, automatic prompt optimization, or supervised fine-tuning — with near-zero code changes to your existing agent, in any framework.

View details
84
Repo Health
68
Technical
69
Dependency
Built with
Python99%
Updated today
TypeScript
59%
Other

agenta

Developer Tools · Devops · AI Development

4,489

The open-source LLMOps platform unifying prompt engineering, evaluation, and observability for teams building reliable LLM applications.

View details
91
Repo Health
77
Technical
67
Dependency
Built with
TypeScript59%
Python39%
Updated today
Python
100%
Apache 2.0

Agno

Devops · AI Development · Automation

41,774

Build, run, and manage agent platforms with a full production stack — SDK, runtime, and control plane included.

View details
93
Repo Health
87
Technical
67
Dependency
Built with
Python100%
Updated today
Python
49%
Other

Airbyte

Developer Tools · Data Engineering

21,916

Open-source ELT platform with 600+ connectors for moving data from any source to warehouses, lakes, and AI agents.

View details
95
Repo Health
80
Technical
67
Dependency
Built with
Python49%
Kotlin42%
Updated today
Python
90%
Apache 2.0

Apache Airflow

Data Engineering

46,530

Define, schedule, and monitor complex data workflows as Python code — with a powerful UI, 80+ provider integrations, and battle-tested scalability across thousands of production deployments.

View details
96
Repo Health
89
Technical
66
Dependency
Built with
Python90%
Updated today
Python
59%
Apache 2.0

argilla

AI Development · Data Engineering

5,081

Collaborate on high-quality AI training data with a self-hosted annotation platform built for LLMs, NLP, and multimodal models.

View details
65
Repo Health
81
Technical
63
Dependency
Built with
Python59%
Jupyter Notebook21%
Updated 2 days ago
Python
62%
MIT

AutoGen

AI Development · Automation

60,518

Build autonomous and human-in-the-loop multi-agent AI systems with a layered, event-driven Python and .NET framework pioneered at Microsoft Research.

View details
57
Repo Health
78
Technical
75
Dependency
Built with
Python62%
C#25%
TypeScript12%
Updated 4 months ago
Python
68%
Other

AutoGPT

Automation · Productivity · AI Assistants

186,687

Build, deploy, and run autonomous AI agents that automate complex multi-step workflows using a visual block-based graph editor.

View details
93
Repo Health
78
Technical
67
Dependency
Built with
Python68%
TypeScript31%
Updated today
Python
83%
MIT

autoresearch

AI Agents · AI Development

94,153

Give an AI agent a real LLM training setup and let it experiment autonomously overnight — you wake up to a log of experiments and (hopefully) a better model.

View details
34
Repo Health
77
Technical
81
Dependency
Built with
Python83%
Jupyter Notebook17%
Updated 4 months ago

Join founders buildingwith open source

Opinionated takes, migration guides, cost-saving tips, and insights from the open source ecosystem.

Subscribe on Substack
Join 750+ subscribers

Search