Name | ipydatagrid JSON |
Version |
1.4.0
JSON |
| download |
home_page | None |
Summary | Fast Datagrid widget for the Jupyter Notebook and JupyterLab |
upload_time | 2024-12-17 07:41:07 |
maintainer | None |
docs_url | None |
author | NumFOCUS |
requires_python | >=3.9 |
license | None |
keywords |
ipython
jupyter
widgets
|
VCS |
|
bugtrack_url |
|
requirements |
No requirements were recorded.
|
Travis-CI |
No Travis.
|
coveralls test coverage |
No coveralls.
|
# ipydatagrid
[![Binder](https://mybinder.org/badge_logo.svg)](https://mybinder.org/v2/gh/jupyter-widgets/ipydatagrid/HEAD?urlpath=lab%2Ftree%2Fexamples%2FDataGrid.ipynb)
[![pre-commit](https://img.shields.io/badge/pre--commit-enabled-brightgreen?logo=pre-commit&logoColor=white)](https://github.com/pre-commit/pre-commit)
[![code style: prettier](https://img.shields.io/badge/code_style-prettier-ff69b4.svg?style=flat-square)](https://github.com/prettier/prettier)
[![Code style: black](https://img.shields.io/badge/code%20style-black-000000.svg)](https://github.com/psf/black)
[![tested with jest](https://img.shields.io/badge/tested_with-jest-99424f.svg)](https://github.com/facebook/jest)
Fast Datagrid widget for the Jupyter Notebook and JupyterLab
## Menu
- [Usage and Examples](#Usage-and-Examples)
- [Installation](#Installation)
- [Development installation](#Development-installation)
- [Contributions](#Contributions)
- [License](#License)
- [Code of Conduct](#Code-of-Conduct)
- [Security Vulnerability reporting](#Security-Vulnerability-reporting)
## Usage and Examples
A fully-featured DataGrid interface
[![DataGrid](./static/ipydatagrid_1.gif)](https://github.com/jupyter-widgets/ipydatagrid/blob/main/examples/DataGrid.ipynb)
Highly performant and fully integrated with ipywidgets
[![DataGrid](./static/ipydatagrid_2.gif)](https://github.com/jupyter-widgets/ipydatagrid/blob/main/examples/DataGrid.ipynb)
Customize the way data is represented in your grid using a variety of renderers
[![DataGrid](./static/ipydatagrid_3.gif)](https://github.com/jupyter-widgets/ipydatagrid/blob/main/examples/DataGrid.ipynb)
Enjoy a sophisticated selections model with two-way data binding
[![DataGrid](./static/ipydatagrid_4.gif)](https://github.com/jupyter-widgets/ipydatagrid/blob/main/examples/Selections.ipynb)
Conditional formatting powered by Vega Expressions
[![DataGrid](./static/ipydatagrid_5.gif)](https://github.com/jupyter-widgets/ipydatagrid/blob/main/examples/ConditionalFormatting.ipynb)
Tutorial and example notebooks can be found in the `/examples` directory.
## Installation
If using JupyterLab, `ipydatagrid` requires JupyterLab version 3 or higher.
You can install `ipydatagrid` using `pip` or `conda`:
Using `pip`:
```bash
pip install ipydatagrid
```
Using `conda`:
```bash
conda install -c conda-forge ipydatagrid
```
If you are using Jupyter Notebook 5.2 or earlier, you may also need to enable
the nbextension:
```bash
jupyter nbextension enable --py [--sys-prefix|--user|--system] ipydatagrid
```
NOTE: For examples using Scales from bqplot to work as intended, the bqplot notebook and lab extensions must be installed as well. See the [bqplot repo](https://github.com/bqplot/bqplot) for installation instructions:
## Development installation
For a development installation:
```bash
git clone https://github.com/jupyter-widgets/ipydatagrid.git
cd ipydatagrid
conda install ipywidgets=8 jupyterlab
pip install -ve .
```
Enabling development install for Jupyter notebook:
```bash
jupyter nbextension install --py --symlink --sys-prefix ipydatagrid
jupyter nbextension enable --py --sys-prefix ipydatagrid
```
Enabling development install for JupyterLab:
```bash
jupyter labextension develop . --overwrite
```
Note for developers: the `--symlink` argument on Linux or OS X allows one to modify the JavaScript code in-place. This feature is not available with Windows.
If you are changing TypeScript code you can watch for code changes and automatically rebuild using
```bash
jlpm watch
```
in one terminal and
```bash
jupyter lab
```
(or `jupyter notebook` or similar) in another.
## Contributions
We :heart: contributions.
The ipydatagrid package is under the [Jupyter-Widgets](https://github.com/jupyter-widgets) [software subproject](https://jupyter.org/governance/software_subprojects.html).
We appreciate contributions from the community.
We follow the [IPython Contributing Guide](https://github.com/ipython/ipython/blob/main/CONTRIBUTING.md)
and [Jupyter Contributing Guides](https://jupyter.readthedocs.io/en/latest/contributor/content-contributor.html)
## License
Please read the [LICENSE](LICENSE.txt) file.
## Code of Conduct
This project has adopted a [Project Jupyter's Code of Conduct](https://github.com/jupyter/governance/blob/master/conduct/code_of_conduct.md).
## Security Vulnerability Reporting
If you believe you have identified a security vulnerability in this project, please raise an issue to the project,
detailing the suspected problem and any methods you've found to reproduce it.
Please do NOT open an issue in the GitHub repository, as we'd prefer to keep vulnerability reports private until
we've had an opportunity to review and address them.
Raw data
{
"_id": null,
"home_page": null,
"name": "ipydatagrid",
"maintainer": null,
"docs_url": null,
"requires_python": ">=3.9",
"maintainer_email": null,
"keywords": "IPython, Jupyter, Widgets",
"author": "NumFOCUS",
"author_email": null,
"download_url": "https://files.pythonhosted.org/packages/91/38/9e8e4dafba7d3f63c2fbee2d0d661420d354ce5962ebbcfd02e54f987ee6/ipydatagrid-1.4.0.tar.gz",
"platform": null,
"description": "# ipydatagrid\n\n[![Binder](https://mybinder.org/badge_logo.svg)](https://mybinder.org/v2/gh/jupyter-widgets/ipydatagrid/HEAD?urlpath=lab%2Ftree%2Fexamples%2FDataGrid.ipynb)\n[![pre-commit](https://img.shields.io/badge/pre--commit-enabled-brightgreen?logo=pre-commit&logoColor=white)](https://github.com/pre-commit/pre-commit)\n[![code style: prettier](https://img.shields.io/badge/code_style-prettier-ff69b4.svg?style=flat-square)](https://github.com/prettier/prettier)\n[![Code style: black](https://img.shields.io/badge/code%20style-black-000000.svg)](https://github.com/psf/black)\n[![tested with jest](https://img.shields.io/badge/tested_with-jest-99424f.svg)](https://github.com/facebook/jest)\n\nFast Datagrid widget for the Jupyter Notebook and JupyterLab\n\n## Menu\n\n- [Usage and Examples](#Usage-and-Examples)\n- [Installation](#Installation)\n- [Development installation](#Development-installation)\n- [Contributions](#Contributions)\n- [License](#License)\n- [Code of Conduct](#Code-of-Conduct)\n- [Security Vulnerability reporting](#Security-Vulnerability-reporting)\n\n## Usage and Examples\n\nA fully-featured DataGrid interface\n[![DataGrid](./static/ipydatagrid_1.gif)](https://github.com/jupyter-widgets/ipydatagrid/blob/main/examples/DataGrid.ipynb)\n\nHighly performant and fully integrated with ipywidgets\n[![DataGrid](./static/ipydatagrid_2.gif)](https://github.com/jupyter-widgets/ipydatagrid/blob/main/examples/DataGrid.ipynb)\n\nCustomize the way data is represented in your grid using a variety of renderers\n[![DataGrid](./static/ipydatagrid_3.gif)](https://github.com/jupyter-widgets/ipydatagrid/blob/main/examples/DataGrid.ipynb)\n\nEnjoy a sophisticated selections model with two-way data binding\n[![DataGrid](./static/ipydatagrid_4.gif)](https://github.com/jupyter-widgets/ipydatagrid/blob/main/examples/Selections.ipynb)\n\nConditional formatting powered by Vega Expressions\n[![DataGrid](./static/ipydatagrid_5.gif)](https://github.com/jupyter-widgets/ipydatagrid/blob/main/examples/ConditionalFormatting.ipynb)\n\nTutorial and example notebooks can be found in the `/examples` directory.\n\n## Installation\n\nIf using JupyterLab, `ipydatagrid` requires JupyterLab version 3 or higher.\n\nYou can install `ipydatagrid` using `pip` or `conda`:\n\nUsing `pip`:\n\n```bash\npip install ipydatagrid\n```\n\nUsing `conda`:\n\n```bash\nconda install -c conda-forge ipydatagrid\n```\n\nIf you are using Jupyter Notebook 5.2 or earlier, you may also need to enable\nthe nbextension:\n\n```bash\njupyter nbextension enable --py [--sys-prefix|--user|--system] ipydatagrid\n```\n\nNOTE: For examples using Scales from bqplot to work as intended, the bqplot notebook and lab extensions must be installed as well. See the [bqplot repo](https://github.com/bqplot/bqplot) for installation instructions:\n\n## Development installation\n\nFor a development installation:\n\n```bash\ngit clone https://github.com/jupyter-widgets/ipydatagrid.git\ncd ipydatagrid\nconda install ipywidgets=8 jupyterlab\npip install -ve .\n```\n\nEnabling development install for Jupyter notebook:\n\n```bash\njupyter nbextension install --py --symlink --sys-prefix ipydatagrid\njupyter nbextension enable --py --sys-prefix ipydatagrid\n```\n\nEnabling development install for JupyterLab:\n\n```bash\njupyter labextension develop . --overwrite\n```\n\nNote for developers: the `--symlink` argument on Linux or OS X allows one to modify the JavaScript code in-place. This feature is not available with Windows.\n\nIf you are changing TypeScript code you can watch for code changes and automatically rebuild using\n```bash\njlpm watch\n```\nin one terminal and\n```bash\njupyter lab\n```\n(or `jupyter notebook` or similar) in another.\n\n## Contributions\n\nWe :heart: contributions.\n\nThe ipydatagrid package is under the [Jupyter-Widgets](https://github.com/jupyter-widgets) [software subproject](https://jupyter.org/governance/software_subprojects.html).\n\nWe appreciate contributions from the community.\n\nWe follow the [IPython Contributing Guide](https://github.com/ipython/ipython/blob/main/CONTRIBUTING.md)\nand [Jupyter Contributing Guides](https://jupyter.readthedocs.io/en/latest/contributor/content-contributor.html)\n\n## License\n\nPlease read the [LICENSE](LICENSE.txt) file.\n\n## Code of Conduct\n\nThis project has adopted a [Project Jupyter's Code of Conduct](https://github.com/jupyter/governance/blob/master/conduct/code_of_conduct.md).\n\n## Security Vulnerability Reporting\n\nIf you believe you have identified a security vulnerability in this project, please raise an issue to the project,\ndetailing the suspected problem and any methods you've found to reproduce it.\n\nPlease do NOT open an issue in the GitHub repository, as we'd prefer to keep vulnerability reports private until\nwe've had an opportunity to review and address them.\n",
"bugtrack_url": null,
"license": null,
"summary": "Fast Datagrid widget for the Jupyter Notebook and JupyterLab",
"version": "1.4.0",
"project_urls": {
"Homepage": "https://github.com/jupyter-widgets/ipydatagrid"
},
"split_keywords": [
"ipython",
" jupyter",
" widgets"
],
"urls": [
{
"comment_text": "",
"digests": {
"blake2b_256": "ac218b81f5368120ff44b11dcdf2517fc0c2cbefda61893c4f9049c2ee838c98",
"md5": "e53700b15452ffa3839f0639047b1877",
"sha256": "1d1d1804df8ca6f07dea8e8f5e0fd9f0010af1d91f1705778f19f4d94c110fcf"
},
"downloads": -1,
"filename": "ipydatagrid-1.4.0-py3-none-any.whl",
"has_sig": false,
"md5_digest": "e53700b15452ffa3839f0639047b1877",
"packagetype": "bdist_wheel",
"python_version": "py3",
"requires_python": ">=3.9",
"size": 1938788,
"upload_time": "2024-12-17T07:41:04",
"upload_time_iso_8601": "2024-12-17T07:41:04.827528Z",
"url": "https://files.pythonhosted.org/packages/ac/21/8b81f5368120ff44b11dcdf2517fc0c2cbefda61893c4f9049c2ee838c98/ipydatagrid-1.4.0-py3-none-any.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "91389e8e4dafba7d3f63c2fbee2d0d661420d354ce5962ebbcfd02e54f987ee6",
"md5": "501793e1349542e1bc5fae9fe619d42b",
"sha256": "210fc57e595a618d76c0cb28d34b1ef9716e10c64c9c5955e07e6d10aaaa12ee"
},
"downloads": -1,
"filename": "ipydatagrid-1.4.0.tar.gz",
"has_sig": false,
"md5_digest": "501793e1349542e1bc5fae9fe619d42b",
"packagetype": "sdist",
"python_version": "source",
"requires_python": ">=3.9",
"size": 7110381,
"upload_time": "2024-12-17T07:41:07",
"upload_time_iso_8601": "2024-12-17T07:41:07.369505Z",
"url": "https://files.pythonhosted.org/packages/91/38/9e8e4dafba7d3f63c2fbee2d0d661420d354ce5962ebbcfd02e54f987ee6/ipydatagrid-1.4.0.tar.gz",
"yanked": false,
"yanked_reason": null
}
],
"upload_time": "2024-12-17 07:41:07",
"github": true,
"gitlab": false,
"bitbucket": false,
"codeberg": false,
"github_user": "jupyter-widgets",
"github_project": "ipydatagrid",
"travis_ci": false,
"coveralls": false,
"github_actions": true,
"tox": true,
"lcname": "ipydatagrid"
}