{"id":13738294,"url":"https://github.com/PablocFonseca/streamlit-aggrid","last_synced_at":"2025-05-08T16:33:11.042Z","repository":{"id":37424481,"uuid":"322432445","full_name":"PablocFonseca/streamlit-aggrid","owner":"PablocFonseca","description":"Implementation of Ag-Grid component for Streamlit","archived":false,"fork":false,"pushed_at":"2025-05-07T02:23:28.000Z","size":21693,"stargazers_count":1174,"open_issues_count":90,"forks_count":219,"subscribers_count":23,"default_branch":"main","last_synced_at":"2025-05-07T03:29:00.437Z","etag":null,"topics":["component","grid","streamlit","table"],"latest_commit_sha":null,"homepage":"https://pypi.org/project/streamlit-aggrid/","language":"Python","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"mit","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/PablocFonseca.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":null,"funding":null,"license":"LICENSE","code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":null,"governance":null,"roadmap":null,"authors":null,"dei":null,"publiccode":null,"codemeta":null,"zenodo":null}},"created_at":"2020-12-17T22:57:06.000Z","updated_at":"2025-05-07T02:23:33.000Z","dependencies_parsed_at":"2024-01-07T17:11:26.623Z","dependency_job_id":"7a8aac47-136d-4830-92a6-163bac6af902","html_url":"https://github.com/PablocFonseca/streamlit-aggrid","commit_stats":{"total_commits":225,"total_committers":23,"mean_commits":9.782608695652174,"dds":"0.16888888888888887","last_synced_commit":"1b31edc513aa41414a2341642559bbfe232b158f"},"previous_names":[],"tags_count":0,"template":false,"template_full_name":null,"repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/PablocFonseca%2Fstreamlit-aggrid","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/PablocFonseca%2Fstreamlit-aggrid/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/PablocFonseca%2Fstreamlit-aggrid/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/PablocFonseca%2Fstreamlit-aggrid/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/PablocFonseca","download_url":"https://codeload.github.com/PablocFonseca/streamlit-aggrid/tar.gz/refs/heads/main","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":253105423,"owners_count":21855023,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2022-07-04T15:15:14.044Z","host_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub","repositories_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories","repository_names_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repository_names","owners_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners"}},"keywords":["component","grid","streamlit","table"],"created_at":"2024-08-03T03:02:17.440Z","updated_at":"2025-05-08T16:33:11.028Z","avatar_url":"https://github.com/PablocFonseca.png","language":"Python","funding_links":["https://www.paypal.com/donate?hosted_button_id=8HGLA4JZBYFPQ"],"categories":["Python"],"sub_categories":[],"readme":"# streamlit-aggrid\n\n[![Open in Streamlit][share_badge]][share_link] [![GitHub][github_badge]][github_link] [![PyPI][pypi_badge]][pypi_link] [![Downloads][downloads_badge]][downloads_link]\n\n\u003e [!IMPORTANT]\n\u003e 💰 If you want to support this lonely python coder you can [Wise](https://wise.com/pay/r/nZDsjl5fZgPxYt0) or [Paypal](https://www.paypal.com/donate?hosted_button_id=8HGLA4JZBYFPQ) me. (Any help is much appreciated).\n\n\u003e For sponsoring, development support, features prioritization you can [email me](mailto:pablo.fonseca+staggrid@gmail.com).\n\n[Live examples](https://staggrid-examples.streamlit.app/) and documentation on Streamlit Cloud.\n\n---\n\n**AgGrid** is an awesome grid for web frontend. More information in [https://www.ag-grid.com/](https://www.ag-grid.com/). Consider purchasing a license from Ag-Grid if you are going to use enterprise features!\n\nCurrent AgGrid version is [32.3.0](https://www.ag-grid.com/archive/32.3.0/)\n\n# Install\n\n```\npip install streamlit-aggrid\n\n```\n\n# Quick Use\n\nCreate an example.py file\n\n```python\nfrom st_aggrid import AgGrid\nimport pandas as pd\n\ndf = pd.read_csv('https://raw.githubusercontent.com/fivethirtyeight/data/master/airline-safety/airline-safety.csv')\nAgGrid(df)\n```\n\nRun :\n\n```shell\nstreamlit run example.py\n```\n\n# Demo\n\nGrid data is sent back to streamlit and can be reused in other components. In the example below a chart is updated on grid edition.\n\n![example image](https://github.com/PablocFonseca/streamlit-aggrid/raw/main/group_selection_example.gif)\n\n# Development Notes\n\nVersion 1.1.3\n\n- fixes enterprise modules being enabled by default. (If using enterprise features, buy a license from Ag Grid.)\n- fixes grid initialization when neither data nor gridOptions are set.\n- 1.1.3.post1 fixes [#317](https://github.com/PablocFonseca/streamlit-aggrid/issues/317)\n\nVersion 1.1.2\n\n- adds PR #308 - Callbacl functionality\n\nVersion 1.1.1\n\n- Solves [#306](https://github.com/PablocFonseca/streamlit-aggrid/issues/306) and [#305](https://github.com/PablocFonseca/streamlit-aggrid/issues/305)\n\nVersion 1.1.0\n\n- Updated AgGrid to version 32.3\n- Added partial support for the aggrid [Theming](https://www.ag-grid.com/javascript-data-grid/theming/) - Check [example](https://staggrid-examples.streamlit.app/Themes)\n- Cleaned project dependencies (Altair \u003c 5)\n\nVersion 1.0.5\n\n- Updated AgGrid to version 31.3\n\nVersion 1.0.4\n\n- Added information on the event that triggered app rerun\n\nVersion 1.0.2\n\n- Moved a lot of response processment to python side.\n- Changed grid return object.\n- Fix bugs and code cleanup.\n\n\u003e [!WARNING]\n\u003e v1.0.0 breaks compatibility with previous versions and many people reached me to say that it is unstable.  \n\u003e Main changes are on gridReturn object as I'm moving heavy processment to python side.  \n\u003e I'm working to stabilize it, if you find any issues, please open a topic on the issue tracker  \n\u003e with a reproductile example, if possible.  \n\u003e Meanwhile use the last v.0.3.4 if things are not working for you! I hope to have everything fixed soon.\n\nVersion 0.3.5\n\n- Merged many PR, thanks everybody.\n- Grid State can be saved and retrieved. Many people requested this one. Live Example [Here](https://staggrid-examples.streamlit.app/?example=%27Grid%20State%27)\n\nVersion 0.3.4\n\n- Added quickfilter\n- Added Excel Export Module\n- Bugfixes (an probably introduced new ones :/)\n- Code cleanup\n- Updated Ag-Grit to 29.1.0 (including ag-grid-react) which will cause direct HTML returns to stop rendering ([#198](https://github.com/PablocFonseca/streamlit-aggrid/issues/198)). Use a [cellRenderer](https://www.ag-grid.com/javascript-data-grid/component-cell-renderer/) instead.\n\nVersion 0.3.3\n\n- Fixes [#132](https://github.com/PablocFonseca/streamlit-aggrid/issues/132)\n- Fixes [#131](https://github.com/PablocFonseca/streamlit-aggrid/issues/131) and [#130](https://github.com/PablocFonseca/streamlit-aggrid/issues/130)\n- Added Sparklines [#118](https://github.com/PablocFonseca/streamlit-aggrid/issues/118)\n- Changed Grid Return to support [#117](https://github.com/PablocFonseca/streamlit-aggrid/issues/117)\n- Rebuilt streamlit theme\n\nVersion 0.3.0\n\n- Merged some PR (Thanks everybody!) check PR at github!\n- Added class parsing in React Side, so more advanced CellRenderers can be used. (Thanks [kjakaitis](https://github.com/kjakaitis))\n- Added gridOptionsBuilder.configure_first_column_as_index() to, well, style the first columns as an index (MultiIndex to come!)\n- Improved serialization performance by using simpler pandas to_json method (PR #62, #85)\n- Added option to render plain json instead of pd.dataframes\n- gridOptions may be loaded from file paths or strings\n- gridReturn is now a @dataclass with rowIndex added to selected_rows, (previous version returned only the selected data, now you can know which row was selected)\n- Changed GridReturnMode behavior. Now update_on accepts a list of gridEvents that will trigger a streamlit refresh, making it possible to subscribe to any [gridEvent](https://www.ag-grid.com/javascript-data-grid/grid-events/).\n- Removed dot-env and simplejson dependencies.\n- Other smaller fixes and typos corrections.\n\nVersion 0.2.3\n\n- small fixes\n- Merged PR #44 and #25 (thanks [msabramo](https://github.com/msabramo) and [ljnsn](https://github.com/ljnsn))\n- Merged PR #58 - allow nesting dataframes. Included an example in exampes folder.\n\nVersion 0.2.2\n\n- Updated frontend dependencies to latest version\n- Corrected text color for better viz when using streamlit theme (thanks [jasonpmcculloch](https://github.com/jasonpmcculloch))\n- Switched default theme to Balham Light ('light'), if you want to use streamlit theme set `theme='streamlit'` on agGrid call\n\nVersion 0.2.0\n\n- Support Themes\n- Incorporated Pull Requests with fixes and pre-select rows (Thanks [randomseed42](https://github.com/randomseed42) and [msabramo](https://github.com/msabramo))\n- You can use strings instead of importing GridUpdateMode and DataReturnMode enumerators\n- it works fine with st.forms!\n- new theme example in example folder\n\nVersion 0.1.9\n\n- Small fixes\n- Organized examples folder\n\nVersion 0.1.8\n\n- Fixes a bug that breaks the grid when NaN or Inf values are present in the data\n\nVersion 0.1.7\n\n- Fixes a bug that happened when converting data back from the grid with only one row\n- Added license_key parameter on AgGrid call.\n\nVersion 0.1.6\n\n- Fixes issue [#3](https://github.com/PablocFonseca/streamlit-aggrid/issues/3)\n- Adds support for timedelta columns check [example][share_link]\n\nVersion 0.1.5\n\n- small bug fixes\n- there is an option to avoid grid re-initialization on app update (check fixed_key_example.py on examples folder or [here](https://share.streamlit.io/pablocfonseca/streamlit-aggrid/main/examples/fixed_key_example.py))\n\nVersion 0.1.3\n\n- Fixed bug where cell was blank after edition.\n- Added enable_enterprise_modules argument to AgGrid call for enabling/disabling [enterprise features](https://www.ag-grid.com/documentation/javascript/licensing/)\n- It is now possible to inject js functions on gridOptions. Enabling advanced customizations such as conditional formatting (check 4\u003csup\u003eth\u003c/sup\u003e column on the [example](share_link))\n\nVersion 0.1.2\n\n- added customCurrencyFormat as column type\n\nVersion 0.1.0:\n\n- I worked a little bit more on making the example app functional.\n- Couple configuration options for update mode (How frontend updates streamlit) and for data returns (grid should return data filtered? Sorted?)\n- Some basic level of row selection\n- Added some docstrings specially on gridOptionsBuilder methods\n- Lacks performance for production. JS Client code is slow...\n\n[share_badge]: https://static.streamlit.io/badges/streamlit_badge_black_white.svg\n[share_link]: https://staggrid-examples.streamlit.app/\n[github_badge]: https://badgen.net/badge/icon/GitHub?icon=github\u0026color=black\u0026label\n[github_link]: https://github.com/PablocFonseca/streamlit-aggrid\n[pypi_badge]: https://badgen.net/pypi/v/streamlit-aggrid?icon=pypi\u0026color=black\u0026label?\n[pypi_link]: https://www.pypi.org/project/streamlit-aggrid/\n[downloads_badge]: https://img.shields.io/pypi/dm/streamlit-aggrid\n[downloads_link]: https://pypi.org/project/streamlit-aggrid/#files\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2FPablocFonseca%2Fstreamlit-aggrid","html_url":"https://awesome.ecosyste.ms/projects/github.com%2FPablocFonseca%2Fstreamlit-aggrid","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2FPablocFonseca%2Fstreamlit-aggrid/lists"}