Name | itables JSON |
Version |
2.4.4
JSON |
| download |
home_page | None |
Summary | Pandas and Polar DataFrames as interactive DataTables |
upload_time | 2025-07-08 20:32:06 |
maintainer | None |
docs_url | None |
author | None |
requires_python | >=3.9 |
license | MIT License
Copyright (c) 2019-2025 Marc Wouts
Permission is hereby granted, free of charge, to any person obtaining a copy
of this software and associated documentation files (the "Software"), to deal
in the Software without restriction, including without limitation the rights
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
copies of the Software, and to permit persons to whom the Software is
furnished to do so, subject to the following conditions:
The above copyright notice and this permission notice shall be included in all
copies or substantial portions of the Software.
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
SOFTWARE. |
keywords |
datatables
interactive
javascript
pandas
polars
|
VCS |
 |
bugtrack_url |
|
requirements |
No requirements were recorded.
|
Travis-CI |
No Travis.
|
coveralls test coverage |
No coveralls.
|

[](https://github.com/mwouts/itables/actions)
[](https://codecov.io/github/mwouts/itables?branch=main)
[](LICENSE)
[](https://pypi.python.org/pypi/itables)
[](https://anaconda.org/conda-forge/itables)
[](https://pypi.python.org/pypi/itables)

[](https://github.com/psf/black)
[](https://mwouts.github.io/itables/apps/widget.html)
[](https://mwouts.github.io/itables/apps/dash.html)
[](https://itables.streamlit.app)
This packages changes how Pandas and Polars DataFrames are rendered in Python notebooks and applications.
With `itables` you can display your tables as interactive [DataTables](https://datatables.net/)
that you can sort, paginate, scroll or filter.
ITables is just about how tables are displayed. You can turn it on and off in just two lines,
with no other impact on your data workflow.
The `itables` package only depends on `numpy`, `pandas` and `IPython`
which you must already have if you work with Pandas in Jupyter (add `polars`, `pyarrow` if you
work with Polars DataFrames).
## Documentation
Browse the [documentation](https://mwouts.github.io/itables/) to see
examples of Pandas or Polars DataFrames rendered as interactive DataTables.
## Quick start
Install the `itables` package with either
```shell
pip install itables
```
or
```shell
conda install itables -c conda-forge
```
Activate the interactive mode for all series and dataframes in Jupyter with
```python
import itables
itables.init_notebook_mode()
```
and then render any DataFrame as an interactive table that you can sort, search and explore:

If you prefer to render only selected DataFrames as interactive tables, call `itables.init_notebook_mode(all_interactive=False)`, then use `itables.show` to show just one Series or DataFrame as an interactive table:

## ITables in Notebooks
ITables works in all the usual Jupyter Notebook environments, including Jupyter Notebook, Jupyter Lab, Jupyter nbconvert (i.e. the tables are still interactive in the HTML export of a notebook), Jupyter Book, Google Colab and Kaggle.
You can also use ITables in [Quarto](https://mwouts.github.io/itables/quarto.html) HTML documents, and in RISE presentations.
ITables works well in VS Code, both in Jupyter Notebooks and in interactive Python sessions.
## ITables in Python applications
ITables is also available as
- a [Jupyter Widget](https://mwouts.github.io/itables/widget.html)
- a [Dash](https://mwouts.github.io/itables/dash.html) component
- a [Streamlit](https://mwouts.github.io/itables/streamlit.html) component,
- and it also works in [Shiny](https://mwouts.github.io/itables/shiny.html) applications.
## Licence
ITables is developed by [Marc Wouts](https://github.com/mwouts) on [GitHub](https://github.com/mwouts/itables),
under a MIT license.
ITables is a wrapper for [datatables.net](https://datatables.net/) which is developed by Allan Jardine
[(sponsor him!)](https://github.com/sponsors/AllanJard), also under a MIT license.
Raw data
{
"_id": null,
"home_page": null,
"name": "itables",
"maintainer": null,
"docs_url": null,
"requires_python": ">=3.9",
"maintainer_email": "Marc Wouts <marc.wouts@gmail.com>",
"keywords": "DataTables, Interactive, Javascript, Pandas, Polars",
"author": null,
"author_email": "Marc Wouts <marc.wouts@gmail.com>",
"download_url": "https://files.pythonhosted.org/packages/81/20/ff4b8bc879c4573e91f810ac2c556c565cbedb994237700ae3ffb42e0e9b/itables-2.4.4.tar.gz",
"platform": null,
"description": "\n\n[](https://github.com/mwouts/itables/actions)\n[](https://codecov.io/github/mwouts/itables?branch=main)\n[](LICENSE)\n[](https://pypi.python.org/pypi/itables)\n[](https://anaconda.org/conda-forge/itables)\n[](https://pypi.python.org/pypi/itables)\n \n[](https://github.com/psf/black)\n[](https://mwouts.github.io/itables/apps/widget.html)\n[](https://mwouts.github.io/itables/apps/dash.html)\n[](https://itables.streamlit.app)\n\nThis packages changes how Pandas and Polars DataFrames are rendered in Python notebooks and applications.\nWith `itables` you can display your tables as interactive [DataTables](https://datatables.net/)\nthat you can sort, paginate, scroll or filter.\n\nITables is just about how tables are displayed. You can turn it on and off in just two lines,\nwith no other impact on your data workflow.\n\nThe `itables` package only depends on `numpy`, `pandas` and `IPython`\nwhich you must already have if you work with Pandas in Jupyter (add `polars`, `pyarrow` if you\nwork with Polars DataFrames).\n\n## Documentation\n\nBrowse the [documentation](https://mwouts.github.io/itables/) to see\nexamples of Pandas or Polars DataFrames rendered as interactive DataTables.\n\n## Quick start\n\nInstall the `itables` package with either\n```shell\npip install itables\n```\n\nor\n```shell\nconda install itables -c conda-forge\n```\n\nActivate the interactive mode for all series and dataframes in Jupyter with\n```python\nimport itables\n\nitables.init_notebook_mode()\n```\nand then render any DataFrame as an interactive table that you can sort, search and explore:\n\n\nIf you prefer to render only selected DataFrames as interactive tables, call `itables.init_notebook_mode(all_interactive=False)`, then use `itables.show` to show just one Series or DataFrame as an interactive table:\n\n\n\n## ITables in Notebooks\n\nITables works in all the usual Jupyter Notebook environments, including Jupyter Notebook, Jupyter Lab, Jupyter nbconvert (i.e. the tables are still interactive in the HTML export of a notebook), Jupyter Book, Google Colab and Kaggle.\n\nYou can also use ITables in [Quarto](https://mwouts.github.io/itables/quarto.html) HTML documents, and in RISE presentations.\n\nITables works well in VS Code, both in Jupyter Notebooks and in interactive Python sessions.\n\n## ITables in Python applications\n\nITables is also available as\n- a [Jupyter Widget](https://mwouts.github.io/itables/widget.html)\n- a [Dash](https://mwouts.github.io/itables/dash.html) component\n- a [Streamlit](https://mwouts.github.io/itables/streamlit.html) component,\n- and it also works in [Shiny](https://mwouts.github.io/itables/shiny.html) applications.\n\n## Licence\n\nITables is developed by [Marc Wouts](https://github.com/mwouts) on [GitHub](https://github.com/mwouts/itables),\nunder a MIT license.\n\nITables is a wrapper for [datatables.net](https://datatables.net/) which is developed by Allan Jardine\n[(sponsor him!)](https://github.com/sponsors/AllanJard), also under a MIT license.\n",
"bugtrack_url": null,
"license": "MIT License\n \n Copyright (c) 2019-2025 Marc Wouts\n \n Permission is hereby granted, free of charge, to any person obtaining a copy\n of this software and associated documentation files (the \"Software\"), to deal\n in the Software without restriction, including without limitation the rights\n to use, copy, modify, merge, publish, distribute, sublicense, and/or sell\n copies of the Software, and to permit persons to whom the Software is\n furnished to do so, subject to the following conditions:\n \n The above copyright notice and this permission notice shall be included in all\n copies or substantial portions of the Software.\n \n THE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\n IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\n FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\n AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\n LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\n OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE\n SOFTWARE.",
"summary": "Pandas and Polar DataFrames as interactive DataTables",
"version": "2.4.4",
"project_urls": {
"Changelog": "https://github.com/mwouts/itables/blob/main/docs/changelog.md",
"Documentation": "https://mwouts.github.io/itables",
"Homepage": "https://mwouts.github.io/itables/",
"Issues": "https://github.com/mwouts/itables/issues",
"Repository": "https://github.com/mwouts/itables.git"
},
"split_keywords": [
"datatables",
" interactive",
" javascript",
" pandas",
" polars"
],
"urls": [
{
"comment_text": null,
"digests": {
"blake2b_256": "a5cca2af9cb19114be0f0afc0242d3e5cb018ac0cbdcf17816c2dd71b68edc79",
"md5": "24060d3a9f4e57db1dda80be3086b098",
"sha256": "eb59b24700f6b4ba2a7810a226eeab207a83a2461120f1fd65220f70872eaa45"
},
"downloads": -1,
"filename": "itables-2.4.4-py3-none-any.whl",
"has_sig": false,
"md5_digest": "24060d3a9f4e57db1dda80be3086b098",
"packagetype": "bdist_wheel",
"python_version": "py3",
"requires_python": ">=3.9",
"size": 2261033,
"upload_time": "2025-07-08T20:32:04",
"upload_time_iso_8601": "2025-07-08T20:32:04.879102Z",
"url": "https://files.pythonhosted.org/packages/a5/cc/a2af9cb19114be0f0afc0242d3e5cb018ac0cbdcf17816c2dd71b68edc79/itables-2.4.4-py3-none-any.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "8120ff4b8bc879c4573e91f810ac2c556c565cbedb994237700ae3ffb42e0e9b",
"md5": "87d6b455f13ad9b65196cba15d653d2a",
"sha256": "29e2b771f7fd3ab70b9d2234615b573da325e610832697e986680ccc036aaf5b"
},
"downloads": -1,
"filename": "itables-2.4.4.tar.gz",
"has_sig": false,
"md5_digest": "87d6b455f13ad9b65196cba15d653d2a",
"packagetype": "sdist",
"python_version": "source",
"requires_python": ">=3.9",
"size": 2230757,
"upload_time": "2025-07-08T20:32:06",
"upload_time_iso_8601": "2025-07-08T20:32:06.531574Z",
"url": "https://files.pythonhosted.org/packages/81/20/ff4b8bc879c4573e91f810ac2c556c565cbedb994237700ae3ffb42e0e9b/itables-2.4.4.tar.gz",
"yanked": false,
"yanked_reason": null
}
],
"upload_time": "2025-07-08 20:32:06",
"github": true,
"gitlab": false,
"bitbucket": false,
"codeberg": false,
"github_user": "mwouts",
"github_project": "itables",
"travis_ci": false,
"coveralls": false,
"github_actions": true,
"lcname": "itables"
}