streamlit-aggrid
Streamlit component implementation of ag-grid
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-aggriduv
uv add streamlit-aggridpoetry
poetry add streamlit-aggridInstalling 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
Tags
More Dynamic Content packages
MarkupSafe provides a text object that escapes…
permissive · top 100 on PyPI
Jinja2Jinja2 is a templating engine that renders…
permissive · top 100 on PyPI
soupsieveSoupsieve is a CSS selector library designed to…
permissive · top 100 on PyPI
WerkzeugWerkzeug is a WSGI utility library providing…
permissive · top 1,000 on PyPI
FlaskFlask is a lightweight WSGI web application…
permissive · top 1,000 on PyPI
MakoMako compiles Python-embedded templates into…
permissive · top 1,000 on PyPI
dash-ag-gridDash AG Grid wraps the AG Grid JavaScript…
permissive · top 5,000 on PyPI
streamlit-antd-componentsProvides Ant Design and Mantine UI components…
unclear · top 15,000 on PyPI
streamlit-echartsRenders interactive ECharts visualizations in…
permissive · top 15,000 on PyPI
streamlit-sortablesStreamlit Sortables adds drag-and-drop sortable…
permissive · top 15,000 on PyPI
streamlit-pdfAdds a PDF viewer component to Streamlit apps…
permissive · top 15,000 on PyPI
pygwalkerTurns pandas DataFrames into interactive…
permissive · top 15,000 on PyPI
reflex-components-dataeditorProvides data table editing components for…
permissive · top 15,000 on PyPI
streamlit-aceEmbeds an Ace code editor component into…
permissive · top 15,000 on PyPI
streamlit-quillEmbeds a React Quill rich-text editor component…
unclear · top 15,000 on PyPI
streamlit-plotly-eventsCaptures click, select, and hover events from…
unclear · top 15,000 on PyPI