matplotly 0.1.0__tar.gz → 0.1.2__tar.gz
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- {matplotly-0.1.0 → matplotly-0.1.2}/.gitignore +1 -0
- {matplotly-0.1.0 → matplotly-0.1.2}/PKG-INFO +2 -1
- {matplotly-0.1.0 → matplotly-0.1.2}/README.md +1 -0
- matplotly-0.1.2/demo_box.ipynb +987 -0
- {matplotly-0.1.0 → matplotly-0.1.2}/demo_plot.ipynb +9 -9
- matplotly-0.1.2/demo_scatter.ipynb +577 -0
- {matplotly-0.1.0 → matplotly-0.1.2/examples}/demo_bar.ipynb +309 -1
- matplotly-0.1.2/examples/demo_box.ipynb +986 -0
- {matplotly-0.1.0 → matplotly-0.1.2/examples}/demo_hist.ipynb +4 -104
- matplotly-0.1.2/examples/demo_plot.ipynb +512 -0
- {matplotly-0.1.0 → matplotly-0.1.2/examples}/demo_scatter.ipynb +10 -10
- matplotly-0.1.2/examples/matplotly_demo.ipynb +461 -0
- {matplotly-0.1.0 → matplotly-0.1.2}/matplotly/_code_gen.py +86 -2
- {matplotly-0.1.0 → matplotly-0.1.2}/matplotly/_introspect.py +65 -0
- {matplotly-0.1.0 → matplotly-0.1.2}/matplotly/panels/_bar.py +219 -0
- {matplotly-0.1.0 → matplotly-0.1.2}/pyproject.toml +1 -1
- {matplotly-0.1.0 → matplotly-0.1.2}/tests/test_code_gen.py +150 -3
- matplotly-0.1.0/demo_box.ipynb +0 -1585
- {matplotly-0.1.0 → matplotly-0.1.2}/.github/workflows/publish.yml +0 -0
- {matplotly-0.1.0 → matplotly-0.1.2}/.github/workflows/tests.yml +0 -0
- {matplotly-0.1.0 → matplotly-0.1.2}/.readthedocs.yaml +0 -0
- {matplotly-0.1.0 → matplotly-0.1.2}/CHANGELOG.md +0 -0
- {matplotly-0.1.0 → matplotly-0.1.2}/LICENSE +0 -0
- {matplotly-0.1.0 → matplotly-0.1.2}/docs/api.rst +0 -0
- {matplotly-0.1.0 → matplotly-0.1.2}/docs/changelog.rst +0 -0
- {matplotly-0.1.0 → matplotly-0.1.2}/docs/conf.py +0 -0
- {matplotly-0.1.0 → matplotly-0.1.2}/docs/examples/index.rst +0 -0
- {matplotly-0.1.0 → matplotly-0.1.2}/docs/index.rst +0 -0
- {matplotly-0.1.0 → matplotly-0.1.2}/docs/installation.rst +0 -0
- {matplotly-0.1.0 → matplotly-0.1.2}/docs/quickstart.rst +0 -0
- {matplotly-0.1.0 → matplotly-0.1.2}/docs/requirements.txt +0 -0
- {matplotly-0.1.0 → matplotly-0.1.2/examples}/demo_errorbar.ipynb +0 -0
- {matplotly-0.1.0 → matplotly-0.1.2/examples}/demo_heatmap.ipynb +0 -0
- {matplotly-0.1.0 → matplotly-0.1.2}/matplotly/__init__.py +0 -0
- {matplotly-0.1.0 → matplotly-0.1.2}/matplotly/_api.py +0 -0
- {matplotly-0.1.0 → matplotly-0.1.2}/matplotly/_commands.py +0 -0
- {matplotly-0.1.0 → matplotly-0.1.2}/matplotly/_profiles.py +0 -0
- {matplotly-0.1.0 → matplotly-0.1.2}/matplotly/_renderer.py +0 -0
- {matplotly-0.1.0 → matplotly-0.1.2}/matplotly/_style_import.py +0 -0
- {matplotly-0.1.0 → matplotly-0.1.2}/matplotly/_types.py +0 -0
- {matplotly-0.1.0 → matplotly-0.1.2}/matplotly/panels/__init__.py +0 -0
- {matplotly-0.1.0 → matplotly-0.1.2}/matplotly/panels/_base.py +0 -0
- {matplotly-0.1.0 → matplotly-0.1.2}/matplotly/panels/_color_utils.py +0 -0
- {matplotly-0.1.0 → matplotly-0.1.2}/matplotly/panels/_distribution.py +0 -0
- {matplotly-0.1.0 → matplotly-0.1.2}/matplotly/panels/_errorbar.py +0 -0
- {matplotly-0.1.0 → matplotly-0.1.2}/matplotly/panels/_fill.py +0 -0
- {matplotly-0.1.0 → matplotly-0.1.2}/matplotly/panels/_global.py +0 -0
- {matplotly-0.1.0 → matplotly-0.1.2}/matplotly/panels/_heatmap.py +0 -0
- {matplotly-0.1.0 → matplotly-0.1.2}/matplotly/panels/_histogram.py +0 -0
- {matplotly-0.1.0 → matplotly-0.1.2}/matplotly/panels/_line.py +0 -0
- {matplotly-0.1.0 → matplotly-0.1.2}/matplotly/panels/_marginal.py +0 -0
- {matplotly-0.1.0 → matplotly-0.1.2}/matplotly/panels/_scatter.py +0 -0
- {matplotly-0.1.0 → matplotly-0.1.2}/matplotly/panels/_subplot.py +0 -0
- {matplotly-0.1.0 → matplotly-0.1.2}/requirements.txt +0 -0
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
Metadata-Version: 2.4
|
|
2
2
|
Name: matplotly
|
|
3
|
-
Version: 0.1.
|
|
3
|
+
Version: 0.1.2
|
|
4
4
|
Summary: Jupyter-native interactive matplotlib figure editor
|
|
5
5
|
Project-URL: Homepage, https://github.com/p-koo/matplotly
|
|
6
6
|
Project-URL: Documentation, https://matplotly.readthedocs.io
|
|
@@ -40,6 +40,7 @@ Description-Content-Type: text/markdown
|
|
|
40
40
|
[](https://pypi.org/project/matplotly/)
|
|
41
41
|
[](https://github.com/p-koo/matplotly/blob/main/LICENSE)
|
|
42
42
|
[](https://matplotly.readthedocs.io)
|
|
43
|
+
[](https://colab.research.google.com/github/p-koo/matplotly/blob/main/examples/matplotly_demo.ipynb)
|
|
43
44
|
|
|
44
45
|
**Jupyter-native interactive matplotlib figure editor.**
|
|
45
46
|
|
|
@@ -4,6 +4,7 @@
|
|
|
4
4
|
[](https://pypi.org/project/matplotly/)
|
|
5
5
|
[](https://github.com/p-koo/matplotly/blob/main/LICENSE)
|
|
6
6
|
[](https://matplotly.readthedocs.io)
|
|
7
|
+
[](https://colab.research.google.com/github/p-koo/matplotly/blob/main/examples/matplotly_demo.ipynb)
|
|
7
8
|
|
|
8
9
|
**Jupyter-native interactive matplotlib figure editor.**
|
|
9
10
|
|