ipyaggrid is a Jupyter widget that brings the ag-Grid data grid into Jupyter notebooks. It provides full ag-Grid functionality, including sorting, filtering, editing, and exporting. Current version is 0.5.4, and the library is maintained by Widgetti. Release cadence is irregular.
pip install ipyaggridNo compatibility data collected yet for this library.
Verified import paths — ran on the pinned version, not inferred.
Creates a basic ag-Grid widget with three columns, showing sorting and filtering enabled.
Add 'licenseKey': '__community__' to grid_options when using community edition.
Convert data from list of dicts to dict of lists. Use pandas DataFrame and then `df.to_dict('list')` if needed.Set `grid_options['quickFilterText'] = 'your_text'` and remove `quick_filter` argument.
Upgrade to 0.5.2 or later where defaults are fixed.
Run `pip install ipyaggrid` in the correct environment (e.g., Jupyter kernel's Python).
Add 'licenseKey': '__community__' to grid_options to suppress the warning if using community edition.
Use `grid_options['quickFilterText']` instead of the `quick_filter` argument.
Convert the DataFrame to dict: `data=df.to_dict('list')`.No dependency data recorded yet.