{"id":18761647,"url":"https://github.com/reflex-dev/reflex-ag-grid","last_synced_at":"2025-04-13T03:31:43.872Z","repository":{"id":256544203,"uuid":"851750700","full_name":"reflex-dev/reflex-ag-grid","owner":"reflex-dev","description":null,"archived":false,"fork":false,"pushed_at":"2024-11-21T11:54:23.000Z","size":157,"stargazers_count":15,"open_issues_count":19,"forks_count":2,"subscribers_count":3,"default_branch":"main","last_synced_at":"2024-12-13T09:10:51.277Z","etag":null,"topics":[],"latest_commit_sha":null,"homepage":null,"language":"Python","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":null,"status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/reflex-dev.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":null,"funding":null,"license":null,"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}},"created_at":"2024-09-03T16:39:41.000Z","updated_at":"2024-12-02T19:57:18.000Z","dependencies_parsed_at":"2024-09-11T15:30:38.165Z","dependency_job_id":"9ddc3339-f842-4551-9d6f-e16c47ea75b8","html_url":"https://github.com/reflex-dev/reflex-ag-grid","commit_stats":null,"previous_names":["reflex-dev/reflex-ag-grid"],"tags_count":0,"template":false,"template_full_name":null,"repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/reflex-dev%2Freflex-ag-grid","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/reflex-dev%2Freflex-ag-grid/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/reflex-dev%2Freflex-ag-grid/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/reflex-dev%2Freflex-ag-grid/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/reflex-dev","download_url":"https://codeload.github.com/reflex-dev/reflex-ag-grid/tar.gz/refs/heads/main","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":248659656,"owners_count":21141153,"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":[],"created_at":"2024-11-07T18:17:10.143Z","updated_at":"2025-04-13T03:31:43.858Z","avatar_url":"https://github.com/reflex-dev.png","language":"Python","readme":"\u003e [!WARNING]  \n\u003e This component is no longer maintained.\n\u003e \n\u003e For the AG Grid wrapping maintained by the Reflex team, please use https://enterprise.reflex.dev/ag-grid from now on.\n\n# AGGrid for Reflex\n\nThis package provides a Reflex component wrapping the AGGrid library.\n\n\u003cimg src=\"aggrid_preview.png\" width=\"500px\"\u003e\n\n\u003e [!WARNING]\n\u003e As it is a WorkInProgress (WIP), only some parts of the AGGrid library features are wrapped, but it should be enough for most use cases.\n\n## Installation\n\n```bash\npip install reflex-ag-grid\n```\n\n## Usage\n\n```python\nfrom reflex_ag_grid import ag_grid\n```\n\n## Helpers tools\n\nSome implementation is offered for DataSource and handlers.\n\n```python\nfrom reflex_ag_grid.data_source import DataSource\nfrom reflex_ag_grid import handlers\n```\n\n## Simple Example\n\n```python\nimport reflex as rx\nfrom reflex_ag_grid import ag_grid\nimport pandas as pd\n\n\ndf = pd.read_csv(\n    \"https://raw.githubusercontent.com/plotly/datasets/master/wind_dataset.csv\"\n)\n\ncolumn_defs = [\n    ag_grid.column_def(field=\"direction\"),\n    ag_grid.column_def(field=\"strength\"),\n    ag_grid.column_def(field=\"frequency\"),\n]\n\n\ndef ag_grid_simple():\n    return ag_grid(\n        id=\"ag_grid_basic_1\",\n        row_data=df.to_dict(\"records\"),\n        column_defs=column_defs,\n    )\n```\n\nCheck out more documentation at [Reflex](https://reflex.dev/docs/library/tables-and-data-grids/ag-grid/).\n\n## FAQ\n\n- **The AGGrid feature I want is not available. What can I do?**\n\n    This component is a partial wrapping of all the features of AGGrid. If you need a feature that is not available, \n    open an issue to request it. We will try to implement it when possible.\n\n    If you can't wait for the team to implement it, you can also submit a PR with the feature you need.\n","funding_links":[],"categories":[],"sub_categories":[],"project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Freflex-dev%2Freflex-ag-grid","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Freflex-dev%2Freflex-ag-grid","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Freflex-dev%2Freflex-ag-grid/lists"}