hiplot-mm 0.0.2__py3-none-any.whl → 0.0.3rc1__py3-none-any.whl

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.
Files changed (64) hide show
  1. hiplot/__init__.py +1 -1
  2. hiplot/fetchers.py +1 -1
  3. hiplot/fetchers_demo.py +2 -2
  4. hiplot/ipython.py +40 -8
  5. hiplot/pkginfo.py +11 -2
  6. hiplot/render.py +2 -2
  7. hiplot/server.py +9 -3
  8. hiplot/static/built/hiplot.bundle.js +1 -1
  9. hiplot/static/built/streamlit_component/hiplot_streamlit.bundle.js +1 -1
  10. hiplot/streamlit_helpers.py +11 -2
  11. hiplot/test_render.py +2 -2
  12. hiplot_mm-0.0.3rc1.dist-info/METADATA +174 -0
  13. hiplot_mm-0.0.3rc1.dist-info/RECORD +33 -0
  14. {hiplot_mm-0.0.2.dist-info → hiplot_mm-0.0.3rc1.dist-info}/WHEEL +1 -1
  15. {hiplot_mm-0.0.2.dist-info → hiplot_mm-0.0.3rc1.dist-info}/entry_points.txt +1 -2
  16. hiplot/static/built/component.d.ts +0 -109
  17. hiplot/static/built/component.js +0 -528
  18. hiplot/static/built/contextmenu.d.ts +0 -26
  19. hiplot/static/built/contextmenu.js +0 -90
  20. hiplot/static/built/controls.d.ts +0 -52
  21. hiplot/static/built/controls.js +0 -163
  22. hiplot/static/built/filters.d.ts +0 -21
  23. hiplot/static/built/filters.js +0 -96
  24. hiplot/static/built/header.d.ts +0 -39
  25. hiplot/static/built/header.js +0 -176
  26. hiplot/static/built/hiplot-mm-0.0.0.tar.gz +0 -0
  27. hiplot/static/built/hiplot.bundle.js.LICENSE.txt +0 -88
  28. hiplot/static/built/hiplot.bundle.js.map +0 -1
  29. hiplot/static/built/hiplot.d.ts +0 -8
  30. hiplot/static/built/hiplot.js +0 -14
  31. hiplot/static/built/hiplot.lib.js +0 -57712
  32. hiplot/static/built/hiplot.lib.js.map +0 -1
  33. hiplot/static/built/hiplot.licenses.txt +0 -682
  34. hiplot/static/built/hiplot_mm-0.0.0-py3-none-any.whl +0 -0
  35. hiplot/static/built/hiplot_streamlit.bundle.js +0 -3
  36. hiplot/static/built/hiplot_streamlit.bundle.js.LICENSE.txt +0 -97
  37. hiplot/static/built/hiplot_streamlit.bundle.js.map +0 -1
  38. hiplot/static/built/hiplot_streamlit.d.ts +0 -1
  39. hiplot/static/built/hiplot_streamlit.js +0 -85
  40. hiplot/static/built/hiplot_streamlit.licenses.txt +0 -689
  41. hiplot/static/built/hiplot_test.bundle.js +0 -3
  42. hiplot/static/built/hiplot_test.bundle.js.LICENSE.txt +0 -88
  43. hiplot/static/built/hiplot_test.bundle.js.map +0 -1
  44. hiplot/static/built/hiplot_test.d.ts +0 -46
  45. hiplot/static/built/hiplot_test.js +0 -238
  46. hiplot/static/built/hiplot_test.licenses.txt +0 -682
  47. hiplot/static/built/hiplot_web.d.ts +0 -3
  48. hiplot/static/built/hiplot_web.js +0 -54
  49. hiplot/static/built/infertypes.d.ts +0 -38
  50. hiplot/static/built/infertypes.js +0 -316
  51. hiplot/static/built/plotxy.d.ts +0 -62
  52. hiplot/static/built/plotxy.js +0 -602
  53. hiplot/static/built/plugin.d.ts +0 -38
  54. hiplot/static/built/plugin.js +0 -8
  55. hiplot/static/built/rowsdisplaytable.d.ts +0 -35
  56. hiplot/static/built/rowsdisplaytable.js +0 -284
  57. hiplot/static/built/streamlit_component/hiplot.bundle.js +0 -3
  58. hiplot/static/built/types.d.ts +0 -64
  59. hiplot/static/built/types.js +0 -55
  60. hiplot_mm-0.0.2.dist-info/METADATA +0 -106
  61. hiplot_mm-0.0.2.dist-info/RECORD +0 -77
  62. {hiplot_mm-0.0.2.dist-info → hiplot_mm-0.0.3rc1.dist-info/licenses}/LICENSE +0 -0
  63. {hiplot_mm-0.0.2.dist-info → hiplot_mm-0.0.3rc1.dist-info/licenses}/NOTICE +0 -0
  64. {hiplot_mm-0.0.2.dist-info → hiplot_mm-0.0.3rc1.dist-info}/top_level.txt +0 -0
@@ -1,64 +0,0 @@
1
- export interface Datapoint {
2
- uid: string;
3
- from_uid: string | null;
4
- [key: string]: any;
5
- }
6
- export interface DatapointLookup {
7
- [key: string]: Datapoint;
8
- }
9
- export interface IDatasets {
10
- rows_all_unfiltered: Array<Datapoint>;
11
- rows_filtered: Array<Datapoint>;
12
- rows_selected: Array<Datapoint>;
13
- rows_highlighted: Array<Datapoint>;
14
- }
15
- export declare enum ParamType {
16
- CATEGORICAL = "categorical",
17
- NUMERIC = "numeric",
18
- NUMERICLOG = "numericlog",
19
- NUMERICPERCENTILE = "numericpercentile",
20
- TIMESTAMP = "timestamp"
21
- }
22
- export interface HiPlotValueDef {
23
- type: ParamType;
24
- colors: {
25
- [value: string]: string;
26
- };
27
- colormap: string | null;
28
- force_value_min: number | null;
29
- force_value_max: number | null;
30
- label_css: string | null;
31
- label_html: string | null;
32
- }
33
- export interface DatapointsCompressed {
34
- columns: Array<string>;
35
- rows: Array<Array<any>>;
36
- }
37
- export interface HiPlotExperiment {
38
- datapoints: Array<Datapoint>;
39
- datapoints_compressed?: DatapointsCompressed;
40
- parameters_definition?: {
41
- [key: string]: HiPlotValueDef;
42
- };
43
- colormap?: string;
44
- colorby?: string;
45
- weightcolumn?: string;
46
- display_data?: {
47
- [key: string]: {
48
- [key2: string]: any;
49
- };
50
- };
51
- enabled_displays?: Array<string>;
52
- }
53
- export declare class Experiment {
54
- static from_iterable(values: object[]): HiPlotExperiment;
55
- }
56
- export declare enum HiPlotLoadStatus {
57
- None = 0,
58
- Loading = 1,
59
- Loaded = 2,
60
- Error = 3
61
- }
62
- export declare const PSTATE_COLOR_BY = "color_by";
63
- export declare const PSTATE_PARAMS = "params";
64
- export declare const PSTATE_FILTERS = "filters";
@@ -1,55 +0,0 @@
1
- /*
2
- * Copyright (c) Facebook, Inc. and its affiliates.
3
- *
4
- * This source code is licensed under the MIT license found in the
5
- * LICENSE file in the root directory of this source tree.
6
- */
7
- ;
8
- ;
9
- ;
10
- export var ParamType;
11
- (function (ParamType) {
12
- ParamType["CATEGORICAL"] = "categorical";
13
- ParamType["NUMERIC"] = "numeric";
14
- ParamType["NUMERICLOG"] = "numericlog";
15
- ParamType["NUMERICPERCENTILE"] = "numericpercentile";
16
- ParamType["TIMESTAMP"] = "timestamp";
17
- })(ParamType || (ParamType = {}));
18
- ;
19
- ;
20
- ;
21
- var Experiment = /** @class */ (function () {
22
- function Experiment() {
23
- }
24
- Experiment.from_iterable = function (values) {
25
- return {
26
- datapoints: values.map(function (raw_row, index) {
27
- var uid = raw_row['uid'] !== undefined ? raw_row['uid'] : "" + index;
28
- var from_uid = raw_row['from_uid'] !== undefined ? raw_row['from_uid'] : null;
29
- var values = Object.assign({}, raw_row);
30
- delete values['uid'];
31
- delete values['from_uid'];
32
- return {
33
- uid: uid,
34
- from_uid: from_uid,
35
- values: values
36
- };
37
- }),
38
- parameters_definition: {},
39
- display_data: {}
40
- };
41
- };
42
- return Experiment;
43
- }());
44
- export { Experiment };
45
- export var HiPlotLoadStatus;
46
- (function (HiPlotLoadStatus) {
47
- HiPlotLoadStatus[HiPlotLoadStatus["None"] = 0] = "None";
48
- HiPlotLoadStatus[HiPlotLoadStatus["Loading"] = 1] = "Loading";
49
- HiPlotLoadStatus[HiPlotLoadStatus["Loaded"] = 2] = "Loaded";
50
- HiPlotLoadStatus[HiPlotLoadStatus["Error"] = 3] = "Error";
51
- })(HiPlotLoadStatus || (HiPlotLoadStatus = {}));
52
- ;
53
- export var PSTATE_COLOR_BY = 'color_by';
54
- export var PSTATE_PARAMS = 'params';
55
- export var PSTATE_FILTERS = 'filters';
@@ -1,106 +0,0 @@
1
- Metadata-Version: 2.1
2
- Name: hiplot-mm
3
- Version: 0.0.2
4
- Summary: High dimensional Interactive Plotting tool
5
- Home-page: https://github.com/facebookresearch/hiplot
6
- Author: Facebook AI Research
7
- License: UNKNOWN
8
- Platform: UNKNOWN
9
- Requires-Python: >=3.6
10
- Description-Content-Type: text/markdown
11
- License-File: LICENSE
12
- License-File: NOTICE
13
- Requires-Dist: ipython >=7.0.1
14
- Requires-Dist: flask
15
- Requires-Dist: flask-compress
16
- Requires-Dist: beautifulsoup4
17
- Provides-Extra: dev
18
- Requires-Dist: pytest ; extra == 'dev'
19
- Requires-Dist: mypy ; extra == 'dev'
20
- Requires-Dist: ipykernel ; extra == 'dev'
21
- Requires-Dist: wheel ; extra == 'dev'
22
- Requires-Dist: selenium ; extra == 'dev'
23
- Requires-Dist: mistune ==0.8.4 ; extra == 'dev'
24
- Requires-Dist: twine ; extra == 'dev'
25
- Requires-Dist: pre-commit ; extra == 'dev'
26
- Requires-Dist: pandas ; extra == 'dev'
27
- Requires-Dist: streamlit >=0.63 ; extra == 'dev'
28
- Requires-Dist: beautifulsoup4 ; extra == 'dev'
29
- Requires-Dist: optuna ; extra == 'dev'
30
- Requires-Dist: sphinx ==5.2.0 ; extra == 'dev'
31
- Requires-Dist: guzzle-sphinx-theme ==0.7.11 ; extra == 'dev'
32
- Requires-Dist: m2r2 ==0.3.3 ; extra == 'dev'
33
-
34
- # HiPlot - High dimensional Interactive Plotting [![CircleCI](https://circleci.com/gh/facebookresearch/hiplot/tree/main.svg?style=svg&circle-token=c89b6825078e174cf35bdc18e4ad4a16e28876f9)](https://circleci.com/gh/facebookresearch/hiplot/tree/main)
35
-
36
-
37
- ![Logo](https://raw.githubusercontent.com/facebookresearch/hiplot/main/hiplot/static/logo.png)
38
-
39
- [![Support Ukraine](https://img.shields.io/badge/Support-Ukraine-FFD500?style=flat&labelColor=005BBB)](https://opensource.fb.com/support-ukraine)
40
- [![License: MIT](https://img.shields.io/badge/License-MIT-brightgreen.svg)](https://opensource.org/licenses/MIT)
41
- [![PyPI download month](https://img.shields.io/pypi/dm/hiplot.svg)](https://pypi.python.org/pypi/hiplot/) [![PyPI version](https://img.shields.io/pypi/v/hiplot.svg)](https://pypi.python.org/pypi/hiplot/) [![docs](https://img.shields.io/badge/docs-passing-brightgreen.svg)](https://facebookresearch.github.io/hiplot/index.html) [![Open In Colab](https://colab.research.google.com/assets/colab-badge.svg)](https://colab.research.google.com/github/facebookresearch/hiplot/blob/main/examples/HiPlotColabExample.ipynb)
42
-
43
-
44
- HiPlot is a lightweight interactive visualization tool to help AI researchers discover correlations and patterns in high-dimensional data using parallel plots and other graphical ways to represent information.
45
-
46
- ### [Try a demo now with sweep data](https://facebookresearch.github.io/hiplot/_static/demo/ml1.csv.html) or [upload your CSV](https://facebookresearch.github.io/hiplot/_static/hiplot_upload.html) or [![Open In Colab](https://colab.research.google.com/assets/colab-badge.svg)](https://colab.research.google.com/github/facebookresearch/hiplot/blob/main/examples/HiPlotColabExample.ipynb)
47
-
48
- There are several modes to HiPlot:
49
- - As a web-server (if your data is a CSV for instance)
50
- - In a jupyter notebook (to visualize python data), or in [Streamlit apps](https://facebookresearch.github.io/hiplot/tuto_streamlit.html)
51
- - In CLI to render standalone HTML
52
-
53
-
54
- ```bash
55
- pip install -U hiplot # Or for conda users: conda install -c conda-forge hiplot
56
- ```
57
-
58
- If you have a jupyter notebook, you can get started with something as simple as:
59
-
60
- ```python
61
- import hiplot as hip
62
- data = [{'dropout':0.1, 'lr': 0.001, 'loss': 10.0, 'optimizer': 'SGD'},
63
- {'dropout':0.15, 'lr': 0.01, 'loss': 3.5, 'optimizer': 'Adam'},
64
- {'dropout':0.3, 'lr': 0.1, 'loss': 4.5, 'optimizer': 'Adam'}]
65
- hip.Experiment.from_iterable(data).display()
66
- ```
67
-
68
- ### [See the live result](https://facebookresearch.github.io/hiplot/_static/demo/demo_basic_usage.html)
69
- ![Result](https://raw.githubusercontent.com/facebookresearch/hiplot/main/assets/notebook.png)
70
-
71
- ## Links
72
-
73
- * Blog post: https://ai.facebook.com/blog/hiplot-high-dimensional-interactive-plots-made-easy/
74
- * Documentation: https://facebookresearch.github.io/hiplot/index.html
75
- * Pypi package: https://pypi.org/project/hiplot/
76
- * Conda package: https://anaconda.org/conda-forge/hiplot
77
- * NPM package: https://www.npmjs.com/package/hiplot
78
- * Examples: https://github.com/facebookresearch/hiplot/tree/main/examples
79
-
80
-
81
- ## Citing
82
-
83
- ```bibtex
84
- @misc{hiplot,
85
- author = {Haziza, D. and Rapin, J. and Synnaeve, G.},
86
- title = {{Hiplot, interactive high-dimensionality plots}},
87
- year = {2020},
88
- publisher = {GitHub},
89
- journal = {GitHub repository},
90
- howpublished = {\url{https://github.com/facebookresearch/hiplot}},
91
- }
92
- ```
93
-
94
- ## Credits
95
- Inspired by and based on code from [Kai Chang](http://bl.ocks.org/syntagmatic/3150059), [Mike Bostock](http://bl.ocks.org/1341021) and [Jason Davies](http://bl.ocks.org/1341281).
96
-
97
- External contributors (*please add your name when you submit your first pull request*):
98
- - [louismartin](https://github.com/louismartin)
99
- - [GoldenCorgi](https://github.com/GoldenCorgi)
100
- - [callistachang](https://github.com/callistachang)
101
-
102
-
103
- ## License
104
- HiPlot is [MIT](LICENSE) licensed, as found in the [LICENSE](LICENSE) file.
105
-
106
-
@@ -1,77 +0,0 @@
1
- hiplot/__init__.py,sha256=ZioLWYAwqgLk99RZ1-CqLnxZ35HEytcBHMOARShZNrg,893
2
- hiplot/__main__.py,sha256=iTsr-pqySeHZ1_Uk-F0O5BOsVJjWslG7z2YZm2KkFpE,283
3
- hiplot/compress.py,sha256=9J2rLJVtZX-EHjdySsGekA0LeOxpmwaB8SnsLA1esco,964
4
- hiplot/experiment.py,sha256=d00uvhw-yrMES9IZ0sk9yFL9FwNV_KTPrq11cIyEVA4,24652
5
- hiplot/fetchers.py,sha256=yWrjxZxizlHbJyTEmbQpJPUVuSXwRH0PNj4Leq7HZ38,11570
6
- hiplot/fetchers_demo.py,sha256=CCEgZlBzknEGWJSsZGraZEOs5mI437tC4n-5nzBL91I,13014
7
- hiplot/ipython.py,sha256=yRbZr-qQyGSbO1mdbhMZy25rr747S0QHMj9u2XZ0poo,6820
8
- hiplot/pkginfo.py,sha256=H77oWT8FUu6eyCDr9RcA14v2r7k1kIGOOt5S30FuGYo,243
9
- hiplot/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
10
- hiplot/render.py,sha256=l5idAf75n6LRupcRhwXwTYpNbgUM-eK6JMTb0_Wjr50,3723
11
- hiplot/server.py,sha256=8d9Ta1p6iDogEkOVnkxkPyRJKHq2c2Ag0cIdK0AxO_8,2219
12
- hiplot/streamlit_helpers.py,sha256=RJIBc1eyCleaTiSG7ib6_xorsqvfQvfgl9uhDUpVvU8,4881
13
- hiplot/test_experiment.py,sha256=dOFpq6qEjexvRRGOkpNjWzrDpcVw8ckCOktCGJFdUr0,6748
14
- hiplot/test_fetchers.py,sha256=zXMN15E22_yNUU_YPcKWx9L4XAyZi1I1yr30cBlmkB0,2208
15
- hiplot/test_render.py,sha256=-HUJqFoiSuWAyHG4TE9VwPzfYa2Khf6qMnBTo93cjsM,2141
16
- hiplot/static/icon-w.svg,sha256=0hfr9tMtWZPOS_GXVOE3s03I4JZ9WFBn7RyyOW9GN0w,1160
17
- hiplot/static/icon.png,sha256=hSllX0zW4r-6Cn8nqfiG9WbkGFU0HE3fTQyjBLg0dXE,21466
18
- hiplot/static/icon.svg,sha256=MDyI5uC4n5FAmMKKqNBmUUhigmxDnjmEeB6FtuSTBGI,1151
19
- hiplot/static/logo-w.svg,sha256=Ptvs98gsgr0Qk12LnbglQKx2lSfs6Hc4TUTx6Mk9hF0,2274
20
- hiplot/static/logo.png,sha256=Rd7cq4aMlvQmSrL5OKrOWcucDngQgkt5ZUUKO2i4uRE,15653
21
- hiplot/static/logo.svg,sha256=vzVSSRpfkuCMuW3RhmrwRk9JkKb2YtHeQIO9f_LFW1k,2265
22
- hiplot/static/thumbnail.png,sha256=SX3sY85PxZ5y0LbPWzoSWGXHvU-fgBBZgW7zxMT_3hk,45290
23
- hiplot/static/built/component.d.ts,sha256=TPMEFYM3399R-w-IOOYmKfSkL-NB4d6LjysGKdKswPI,4093
24
- hiplot/static/built/component.js,sha256=V8GqjlsOTcX7ZOfwwvea2WX_KKRu3NdGXxMspA6sUUY,25067
25
- hiplot/static/built/contextmenu.d.ts,sha256=WlUiv3YcKuQ-gefN5Et0kr2vbyDbD6VwmMJA_yf66rc,886
26
- hiplot/static/built/contextmenu.js,sha256=Z9jcUZQ_qEueL2Ys-UTWuDsFaR32mjZuittuFCiFzXI,3479
27
- hiplot/static/built/controls.d.ts,sha256=aIQrJ3B7haUEazOGq-ZG4KF0LhVaFDZ1Ns_MsP5THk4,1675
28
- hiplot/static/built/controls.js,sha256=3bngUlBWAXdI30Cgycf9gcgVMcrhlYYxuMhAj7OT8Zo,6568
29
- hiplot/static/built/filters.d.ts,sha256=DEmzpv85sMQOjNTncwymD20YbD323dROkkRwKWZdtds,560
30
- hiplot/static/built/filters.js,sha256=_ZyHQoyeGijC9wS-5-XPtp3MkHeA-WSSth5Q1gVGVe0,2986
31
- hiplot/static/built/header.d.ts,sha256=C6OhV21l69I94e2tDZ2nu-6T_iR13_RuPMeYR7EK3ZI,1380
32
- hiplot/static/built/header.js,sha256=FCkj5RWfmQP96wm4rNT5AvnBc0L8Qtx3JH6o6JNWtkM,9026
33
- hiplot/static/built/hiplot-mm-0.0.0.tar.gz,sha256=C9zEA6iNVZcTMfacgO3_O2GJhL63Sdpll4iPFtmFvbc,5086106
34
- hiplot/static/built/hiplot.bundle.js,sha256=8XnPSltPYA_MyvfQ_CKZpkuWP46BLXrfF5osRA2GMuI,1614437
35
- hiplot/static/built/hiplot.bundle.js.LICENSE.txt,sha256=0fOVvZbynB0HNHi4HsAZn8gx3r1_O2EAwhGByuiNiwk,2043
36
- hiplot/static/built/hiplot.bundle.js.map,sha256=5YNopMiw5LwaG2Sqv9A0NY3E-7BtxaNyuJNPf-B5qXk,4683463
37
- hiplot/static/built/hiplot.d.ts,sha256=ikClReHp6q5eLrCL-eow4VUdOPVTNjjfO0OWspVqic0,606
38
- hiplot/static/built/hiplot.js,sha256=PB7WnpKOhIZrJyGvjcJT7fqPzQdtVXNMKK9_QUnEFbc,642
39
- hiplot/static/built/hiplot.lib.js,sha256=hdFnnTjE_p1PFREcmuh5Rz0CovuEeHm_0iiG0nL3gGE,3064451
40
- hiplot/static/built/hiplot.lib.js.map,sha256=05sFueZBfGixndi5EGCFUobRbQW89cnWkBMeHAJK20E,3635608
41
- hiplot/static/built/hiplot.licenses.txt,sha256=h7yMYIEcZhr-MKJojTolBu-PC1-PDQqEnE4Mu6KsNqY,30735
42
- hiplot/static/built/hiplot_mm-0.0.0-py3-none-any.whl,sha256=hAwh4gXm0h0-AgK1LA7sP2t2dStO0HUe4-UhODXHSkw,5144836
43
- hiplot/static/built/hiplot_streamlit.bundle.js,sha256=oLtMEONo9jq5rALCOgorW7oFvl-_beHSxG5fxLKBZR0,1598994
44
- hiplot/static/built/hiplot_streamlit.bundle.js.LICENSE.txt,sha256=ERfze3MZGNx0wjBs-kVLUTChyAU6KPVKYP5Md409vDw,2290
45
- hiplot/static/built/hiplot_streamlit.bundle.js.map,sha256=omDkMu2MMMnqupOMGT6YiL0WWwlQCdk9jQxSUpwK6EU,4598906
46
- hiplot/static/built/hiplot_streamlit.d.ts,sha256=jmCbtxwguFjHfw6fkLsTGduEd7E_n5ZfGh4YUkv1CIE,11
47
- hiplot/static/built/hiplot_streamlit.js,sha256=dpptTD38pjKSQgpu0t4v_WmX6SWmDR-f5Ku5RfJYQOw,3586
48
- hiplot/static/built/hiplot_streamlit.licenses.txt,sha256=-kSJBLE0DlPhcFOIEiXQCmfoD3zZkFQm4UiMAs2jo9k,31334
49
- hiplot/static/built/hiplot_test.bundle.js,sha256=Oto8Q7pGuYKUVkAlT8G3ODEPCXYFek35yHTz2rtgGo8,1622219
50
- hiplot/static/built/hiplot_test.bundle.js.LICENSE.txt,sha256=0fOVvZbynB0HNHi4HsAZn8gx3r1_O2EAwhGByuiNiwk,2043
51
- hiplot/static/built/hiplot_test.bundle.js.map,sha256=1NjyOn4zR7P7qmTUwk3PNZJcSGZhwLd6ezn5PYrEJh0,4702208
52
- hiplot/static/built/hiplot_test.d.ts,sha256=bHpJwjJ1ghZA3Dg5snkRmdYZra5_0DdLr3D5MI9ObHM,1279
53
- hiplot/static/built/hiplot_test.js,sha256=65k_ykv_vbuVUovoT8ywO1pjR8XX-FEZYFC8DCb7U8o,10755
54
- hiplot/static/built/hiplot_test.licenses.txt,sha256=h7yMYIEcZhr-MKJojTolBu-PC1-PDQqEnE4Mu6KsNqY,30735
55
- hiplot/static/built/hiplot_web.d.ts,sha256=fWRSL4FEB2fNO425oi7GYRqWn1uHwDIb_Stnub7GpZE,179
56
- hiplot/static/built/hiplot_web.js,sha256=FawY542HifblmPuSdDhyT4Y1nknsHrNfS1xOImLhzMo,1935
57
- hiplot/static/built/infertypes.d.ts,sha256=yQhg79Tpu54TaTljiqsfUtLPA4V-daQn8P9d9oHB-Xs,1318
58
- hiplot/static/built/infertypes.js,sha256=BLn9OqUJdILFe-6F7-YQZpr39gG5-wgllnZcmeyqyuw,12533
59
- hiplot/static/built/plotxy.d.ts,sha256=Q_OXJzv-vJ8joTu4TRy4vmQ-xl34aPkd5qXR7gicUBI,1930
60
- hiplot/static/built/plotxy.js,sha256=tR2Dq5HAx5pu1PZgPp4LpfNwtW6V7rLalNgCWt7sa3w,27151
61
- hiplot/static/built/plugin.d.ts,sha256=KPeI99qQdg2BPOO3hqI9eqgdKCpP11XZ2M9SBlJunmg,1683
62
- hiplot/static/built/plugin.js,sha256=GAuHMMWx0cBaxs6PoPaF1GpKLwbMqteoNOeTKUvlTVg,192
63
- hiplot/static/built/rowsdisplaytable.d.ts,sha256=e9Hh5QWka46kv_t2IoLf9G49MGg94q8OW8H8Sand7zc,1158
64
- hiplot/static/built/rowsdisplaytable.js,sha256=FjIIZeor-SSuCUiuhHbdknb5Ai1p_-iBKeU2PFc7lb8,11327
65
- hiplot/static/built/types.d.ts,sha256=jIHxFmKd_vn2QEWpqBhOOARDX3Ru6up6WahqNp1LCLA,1676
66
- hiplot/static/built/types.js,sha256=WQU-EbGvszmiAiTXC4hK-kM3L8iVBAk_TSR2IaGRt6A,1826
67
- hiplot/static/built/streamlit_component/hiplot.bundle.js,sha256=N_YcehV-yOjmjYlGIBMbLhg4MHAI-lRiCvFefTykGHA,1616094
68
- hiplot/static/built/streamlit_component/hiplot_streamlit.bundle.js,sha256=OdGqTuzIPJgzT8MUNkFnc1TnbgFgzrGAZXKLk4QOc-A,1597337
69
- hiplot/static/built/streamlit_component/index.html,sha256=9zbuZu0iE1vFr2cy0ulrP3l34i8W_3-Mkl_JCPVq-tc,512
70
- hiplot/templates/index.html,sha256=cwt7fGGdz3UHxHZAh3EMnudmwMauGV7Jp8YOUxtSFPE,1281
71
- hiplot_mm-0.0.2.dist-info/LICENSE,sha256=UkEte8fOQVfqYou6rLiCngqcs8WPV_mRdhJryM8r_IU,1086
72
- hiplot_mm-0.0.2.dist-info/METADATA,sha256=mDpJGKD6i-CDHx6_8vCHZ1DIcue0r2jZGBr1STrb4WM,5013
73
- hiplot_mm-0.0.2.dist-info/NOTICE,sha256=BgJexxrr6wJp6w2Sh51mRAiLn1ymNC5o6F5KrnUV8Do,11609
74
- hiplot_mm-0.0.2.dist-info/WHEEL,sha256=oiQVh_5PnQM0E3gPdiz09WCNmwiHDMaGer_elqB3coM,92
75
- hiplot_mm-0.0.2.dist-info/entry_points.txt,sha256=At_cbvxYWt5W4sTyKU-g-S6safCjbMIBCV5F7xlyNHk,107
76
- hiplot_mm-0.0.2.dist-info/top_level.txt,sha256=J1kKpj7DXS676kMWcep6U8rHfAHrL1YQWAwhjcHMpMU,7
77
- hiplot_mm-0.0.2.dist-info/RECORD,,