skillfed

streamlit-aggrid

Streamlit component implementation of ag-grid

streamlit-aggrid v1.2.1.post2 922.0K downloads/30d#4,715 on PyPI1,294
Permissive license MIT Active released

What it is and what it does

streamlit-aggrid wraps ag-grid, a mature web-based data grid library, into a Streamlit component so you can display pandas DataFrames and JSON data as interactive, sortable, filterable tables within Streamlit applications. The grid sends edited data back to Python, allowing you to react to user changes—cell edits, row selections, column reordering—and update other Streamlit widgets in response.

The package handles data serialization between browser and server, supports themes, cell rendering customization, and grid state persistence. It depends on streamlit, pandas, and python-decouple, and is maintained by a solo developer with active bug fixes and feature updates. Recent versions added server-client synchronization control and improved data type handling for edited cells.

Use it for:

  • Display and allow editing of CSV or database query results directly in a Streamlit dashboard without custom HTML.
  • Build interactive data exploration tools where selecting or filtering grid rows triggers updates to charts or metrics.
  • Export grid data to Excel or CSV after user-driven filtering or sorting within the app.
  • Create admin interfaces or data-entry forms where users edit tabular data and changes are captured by Streamlit.
  • Render large pandas DataFrames with built-in pagination and search to avoid overwhelming the browser.

Worth the install?

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

Embeds ag-grid, a feature-rich data grid component, into Streamlit applications to display and interact with tabular data with sorting, filtering, editing, and export capabilities.

Yes. Low install friction, permissive MIT license, active maintenance, no known vulnerabilities, and solid popularity make it a safe choice for Streamlit projects needing interactive tables. The solo-developer model carries some risk for critical production use, but the codebase is stable and well-tested as of version 1.2.1.post2.

Install

streamlit-aggrid on PyPI

pip

pip install streamlit-aggrid

uv

uv add streamlit-aggrid

poetry

poetry add streamlit-aggrid

Installing streamlit-aggrid

Before you install

Low friction: pure Python wheel with only three runtime dependencies (streamlit, pandas, python-decouple). Actively maintained with recent releases; last commit 2026-07-09 and 1294 GitHub stars indicate ongoing support.

License in practice

MIT license permits unrestricted use, modification, and distribution in both open and closed projects with minimal obligations—only attribution required.

Quickstart

pip install streamlit-aggrid

from streamlit_aggrid import AgGrid
import pandas as pd

df = pd.read_csv('data.csv')
AgGrid(df)

Requires Streamlit app context; ag-grid enterprise features require a separate license from Ag-Grid.

Verify before relying

  • Whether all ag-grid 34.3.1 features are fully exposed through the Python API or if some require direct JavaScript configuration.
  • Performance characteristics with very large datasets (row count thresholds where rendering or synchronization degrades).
  • Compatibility matrix with specific Streamlit versions beyond the general 'active' maintenance signal.

Package facts

License MIT (permissive)
Python support supports the current Python release (>=3.10)
Install friction low — pure-Python wheel
Runtime dependencies 3 — streamlit, pandas, python-decouple
Maintenance actively maintained — 228 days since the last release
Last repo commit
First released
Downloads 921,988/month — #4,715 on PyPI (30-day window, as of 2026-08-14)
Known vulnerabilities none known (OSV.dev, checked 2026-08-14)

Evidence: streamlit_aggrid-1.2.1.post2-py3-none-any.whl

Keywords: streamlit, ag-grid, component

License :: OSI Approved :: MIT LicenseOperating System :: OS IndependentProgramming Language :: Python :: 3Programming Language :: Python :: 3.10Programming Language :: Python :: 3.11Programming Language :: Python :: 3.12Programming Language :: Python :: 3.13

Tags

streamlit data grid componentag-grid for streamlitinteractive table widgetpandas dataframe displayeditable grid streamlitdata table with filteringspreadsheet-like interface
streamlit-componentdata-visualizationinteractive-tables

More Dynamic Content packages