jsongrapher 4.4__py3-none-any.whl → 4.6__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.
@@ -1,69 +1,96 @@
1
- #This is a simple file for storing the automatically loaded trace_styles_collection dictionary for JSONGrapher.
1
+ #This is a simple file for storing the automatically loaded trace_styles_collection dictionary
2
+ # for JSONGrapher.
2
3
  #It is not recommended that a person overwrite this file.
3
4
 
5
+ #Any styles upgrades made to this file should be made to both the javascript and the python version.
6
+ #The javascript version files are at: https://github.com/AdityaSavara/JSONGrapher/tree/main/styles
7
+
4
8
  #each dictionary below, like "default" or "Nature" is one 'layout_style'.
5
- #Currently, the style names are case sensitive. In the future, it is likely they will not be case sensitive.
9
+ #Currently, the style names are case sensitive. In the future, it is likely
10
+ # they will not be case sensitive.
6
11
  styles_library = {
7
- "default": {
8
- "layout": {
9
- "title": {"font": {"size": 32}, "x": 0.5},
10
- "xaxis": {"title": {"font": {"size": 27}}, "tickfont": {"size": 23}},
11
- "yaxis": {"title": {"font": {"size": 27}}, "tickfont": {"size": 23}},
12
- "legend": {
13
- "title": {"font": {"size": 22}},
14
- "font": {"size": 22}
15
- }
12
+ "default": {
13
+ "layout": {
14
+ "title": {"font": {"size": 32}, "x": 0.5},
15
+ "xaxis": {"title": {"font": {"size": 27}}, "tickfont": {"size": 23}},
16
+ "yaxis": {"title": {"font": {"size": 27}}, "tickfont": {"size": 23}},
17
+ "legend": {
18
+ "title": {"font": {"size": 22}},
19
+ "font": {"size": 22}
20
+ }
21
+ }
22
+ },
23
+ "offset2d": {
24
+ "layout": {
25
+ "title": {"font": {"size": 32}, "x": 0.5},
26
+ "xaxis": {"title": {"font": {"size": 27}}, "tickfont": {"size": 23}},
27
+ "yaxis": {"title": {"font": {"size": 27}}, "tickfont": {"size": 23}},
28
+ "legend": {
29
+ "title": {"font": {"size": 22}},
30
+ "font": {"size": 22}
31
+ }
32
+ }
33
+ },
34
+ "default3d": {
35
+ "layout": {
36
+ "scene": {"aspectmode":"cube"},
37
+ "title": {"font": {"size": 32}, "x": 0.5},
38
+ "xaxis": {"title": {"font": {"size": 12}}, "tickfont": {"size": 12}},
39
+ "yaxis": {"title": {"font": {"size": 12}}, "tickfont": {"size": 12}},
40
+ "zaxis": {"title": {"font": {"size": 12}}, "tickfont": {"size": 12}},
41
+ "legend": {
42
+ "title": {"font": {"size": 22}},
43
+ "font": {"size": 22}
16
44
  }
17
- },
18
- "default3d": {
19
- "layout": {
20
- "scene": {"aspectmode":"cube"},
21
- "title": {"font": {"size": 32}, "x": 0.5},
22
- "xaxis": {"title": {"font": {"size": 12}}, "tickfont": {"size": 12}},
23
- "yaxis": {"title": {"font": {"size": 12}}, "tickfont": {"size": 12}},
24
- "zaxis": {"title": {"font": {"size": 12}}, "tickfont": {"size": 12}},
25
- "legend": {
26
- "title": {"font": {"size": 22}},
27
- "font": {"size": 22}
28
- }
45
+ }
46
+ },
47
+ "arrange2dTo3d": {
48
+ "layout": {
49
+ "scene": {"aspectmode":"cube"},
50
+ "title": {"font": {"size": 32}, "x": 0.5},
51
+ "xaxis": {"title": {"font": {"size": 12}}, "tickfont": {"size": 12}},
52
+ "yaxis": {"title": {"font": {"size": 12}}, "tickfont": {"size": 12}},
53
+ "zaxis": {"title": {"font": {"size": 12}}, "tickfont": {"size": 12}},
54
+ "legend": {
55
+ "title": {"font": {"size": 22}},
56
+ "font": {"size": 22}
29
57
  }
30
- },
31
- "Nature": {
32
- "layout": {
33
- "title": {"font": {"size": 32, "family": "Times New Roman", "color": "black"}},
34
- "font": {"size": 25, "family": "Times New Roman"},
35
- "paper_bgcolor": "white",
36
- "plot_bgcolor": "white",
37
- "xaxis": {
38
- "showgrid": True, "gridcolor": "#ddd", "gridwidth": 1,
39
- "linecolor": "black", "linewidth": 2, "ticks": "outside",
40
- "tickwidth": 2, "tickcolor": "black"
41
- },
42
- "yaxis": {
43
- "showgrid": True, "gridcolor": "#ddd", "gridwidth": 1,
44
- "linecolor": "black", "linewidth": 2, "ticks": "outside",
45
- "tickwidth": 2, "tickcolor": "black"
46
- }
58
+ }
59
+ },
60
+ "Nature": {
61
+ "layout": {
62
+ "title": {"font": {"size": 32, "family": "Times New Roman", "color": "black"}},
63
+ "font": {"size": 25, "family": "Times New Roman"},
64
+ "paper_bgcolor": "white",
65
+ "plot_bgcolor": "white",
66
+ "xaxis": {
67
+ "showgrid": True, "gridcolor": "#ddd", "gridwidth": 1,
68
+ "linecolor": "black", "linewidth": 2, "ticks": "outside",
69
+ "tickwidth": 2, "tickcolor": "black"
70
+ },
71
+ "yaxis": {
72
+ "showgrid": True, "gridcolor": "#ddd", "gridwidth": 1,
73
+ "linecolor": "black", "linewidth": 2, "ticks": "outside",
74
+ "tickwidth": 2, "tickcolor": "black"
47
75
  }
48
- },
49
- "Science": {
50
- "layout": {
51
- "title": {"font": {"size": 32, "family": "Arial", "color": "black"}},
52
- "font": {"size": 25, "family": "Arial"},
53
- "paper_bgcolor": "white",
54
- "plot_bgcolor": "white",
55
- "xaxis": {
56
- "showgrid": True, "gridcolor": "#ccc", "gridwidth": 1,
57
- "linecolor": "black", "linewidth": 2, "ticks": "outside",
58
- "tickwidth": 2, "tickcolor": "black"
59
- },
60
- "yaxis": {
61
- "showgrid": True, "gridcolor": "#ccc", "gridwidth": 1,
62
- "linecolor": "black", "linewidth": 2, "ticks": "outside",
63
- "tickwidth": 2, "tickcolor": "black"
64
- }
76
+ }
77
+ },
78
+ "Science": {
79
+ "layout": {
80
+ "title": {"font": {"size": 32, "family": "Arial", "color": "black"}},
81
+ "font": {"size": 25, "family": "Arial"},
82
+ "paper_bgcolor": "white",
83
+ "plot_bgcolor": "white",
84
+ "xaxis": {
85
+ "showgrid": True, "gridcolor": "#ccc", "gridwidth": 1,
86
+ "linecolor": "black", "linewidth": 2, "ticks": "outside",
87
+ "tickwidth": 2, "tickcolor": "black"
88
+ },
89
+ "yaxis": {
90
+ "showgrid": True, "gridcolor": "#ccc", "gridwidth": 1,
91
+ "linecolor": "black", "linewidth": 2, "ticks": "outside",
92
+ "tickwidth": 2, "tickcolor": "black"
65
93
  }
66
94
  }
67
95
  }
68
-
69
-
96
+ }
@@ -1,6 +1,10 @@
1
- #This is a simple file for storing the automatically loaded trace_styles_collection dictionary for JSONGrapher.
1
+ #This is a simple file for storing the automatically loaded trace_styles_collection dictionary
2
+ # for JSONGrapher.
2
3
  #It is not recommended that a person overwrite this file.
3
4
 
5
+ #Any styles upgrades made to this file should be made to both the javascript and the python version.
6
+ #The javascript version files are at: https://github.com/AdityaSavara/JSONGrapher/tree/main/styles
7
+
4
8
  #each dictionary below is one 'trace_styles_collection'. "default" is the first one.
5
9
  styles_library = {
6
10
  "default": {
@@ -41,7 +45,7 @@ styles_library = {
41
45
  "colorscale": "viridis_r",
42
46
  "showscale": True
43
47
  }
44
- },
48
+ },
45
49
  "bubble2d": {
46
50
  "type": "scatter",
47
51
  "mode": "markers",
@@ -50,7 +54,7 @@ styles_library = {
50
54
  "colorscale": "viridis_r",
51
55
  "showscale": True
52
56
  }
53
- },
57
+ },
54
58
  "spline": {
55
59
  "type": "scatter",
56
60
  "mode": "lines",
@@ -73,7 +77,12 @@ styles_library = {
73
77
  "mode": "lines+markers",
74
78
  "line": {"shape": "spline", "width": 2},
75
79
  "marker": {"size": 10},
76
- },
80
+ },
81
+ "curve3d": {
82
+ "mode": "lines",
83
+ "type": "scatter3d",
84
+ "line": {"width":4}
85
+ },
77
86
  "scatter3d": {
78
87
  "mode": "markers",
79
88
  "type": "scatter3d",
@@ -205,4 +214,4 @@ styles_library = {
205
214
  "colorscale": "Viridis",
206
215
  }
207
216
  }
208
- }
217
+ }
JSONGrapher/version.py CHANGED
@@ -1 +1 @@
1
- __version__ = '4.4'
1
+ __version__ = '4.6'
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.1
2
2
  Name: jsongrapher
3
- Version: 4.4
3
+ Version: 4.6
4
4
  Summary: The python version of JSONGrapher with tools for creating JSONGrapher Records.
5
5
  Home-page: https://github.com/AdityaSavara/jsongrapher-py
6
6
  Author: Aditya Savara
@@ -1,4 +1,4 @@
1
- JSONGrapher/JSONRecordCreator.py,sha256=7AlusrLNjMkqOZd3A_Kb_tyhqF-QOvRn7uQQGaXybFY,218318
1
+ JSONGrapher/JSONRecordCreator.py,sha256=vBy8NXe_gCxsuhnAPl_q9UvoaG4k-UzgOu47lLzPWig,328827
2
2
  JSONGrapher/UnitPytesting.py,sha256=xizJ-2fg9C5oNMFJyfavbBLMusayE9KWQiYIRrQQd4A,4363
3
3
  JSONGrapher/UnitpyCustomUnitsTesting.py,sha256=Rwq5p8HXN0FP54lRFgLTV0kgJ9TpcFaD3_C0MEOoEzw,1297
4
4
  JSONGrapher/__init__.py,sha256=fA3R6paWq3uskiLe3OglQZY_uJOejZHMFKdyX0dXWjo,310
@@ -6,14 +6,14 @@ JSONGrapher/drag_and_drop_gui.py,sha256=-7QJHLhzadHotWhONH4inerMaZ_xuwoTQSMRF_MP
6
6
  JSONGrapher/equation_creator.py,sha256=VFu6dFo-C0wDf1N3e0CyCBI-53cCUrp3oe0umdMLofs,17968
7
7
  JSONGrapher/equation_evaluator.py,sha256=Cm7UK5vWa6fT0OylD9f22_eR8zUvxY_Sy_W6n6N9bew,37012
8
8
  JSONGrapher/units_list.py,sha256=ROrlAsD66oPozZmOaE65xjNUEg3CxkSmA8iPE2_ihYI,34438
9
- JSONGrapher/version.py,sha256=qBnDha-1O1-zjh3MFXQsOlQrB1ykLZIoeKE5jHBMh-k,19
9
+ JSONGrapher/version.py,sha256=aybVIDnErowudUaXo41Wbvjo04OYikR0JCUPpHCRb5I,19
10
10
  JSONGrapher/styles/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
11
- JSONGrapher/styles/layout_styles_library.py,sha256=adGZNVAj_VysYX-9x1NqxDnhIQFtKsMW8swGaY30ocs,3100
12
- JSONGrapher/styles/trace_styles_collection_library.py,sha256=4WhrmsSotPGRwFplGPoRjTiyFd3PMneg5mUewjZMK88,6437
13
- jsongrapher-4.4.data/data/LICENSE.txt,sha256=7Guw_pmj_H4sApnM7fld2L4HH6CP-3ZYdFoOXtHFx0Y,1489
14
- jsongrapher-4.4.data/data/README.md,sha256=u9uRPF0T12Pl6M6qjEleXZoB41ye0VTQPCJpEdldwNU,8157
15
- jsongrapher-4.4.dist-info/LICENSE.txt,sha256=7Guw_pmj_H4sApnM7fld2L4HH6CP-3ZYdFoOXtHFx0Y,1489
16
- jsongrapher-4.4.dist-info/METADATA,sha256=XwDZLT51CId5nJG7-Mu-885q8NmVDvt168xza0qEuvc,9231
17
- jsongrapher-4.4.dist-info/WHEEL,sha256=tZoeGjtWxWRfdplE7E3d45VPlLNQnvbKiYnx7gwAy8A,92
18
- jsongrapher-4.4.dist-info/top_level.txt,sha256=5f7Ui2hCKCPTQOjD540WKghKNYOvUDNfdpnDbIlAD3Y,12
19
- jsongrapher-4.4.dist-info/RECORD,,
11
+ JSONGrapher/styles/layout_styles_library.py,sha256=jfpxtjfM_BtAJOuZdcJbjI83b-5jka80hIXssSiJOYI,4014
12
+ JSONGrapher/styles/trace_styles_collection_library.py,sha256=UDD4blEplJJI7aRAcR-PedidxSjH_72vtLPpCOEP9gU,6756
13
+ jsongrapher-4.6.data/data/LICENSE.txt,sha256=7Guw_pmj_H4sApnM7fld2L4HH6CP-3ZYdFoOXtHFx0Y,1489
14
+ jsongrapher-4.6.data/data/README.md,sha256=u9uRPF0T12Pl6M6qjEleXZoB41ye0VTQPCJpEdldwNU,8157
15
+ jsongrapher-4.6.dist-info/LICENSE.txt,sha256=7Guw_pmj_H4sApnM7fld2L4HH6CP-3ZYdFoOXtHFx0Y,1489
16
+ jsongrapher-4.6.dist-info/METADATA,sha256=UkgkUGOGh18lI1JBmyaAQSoh9cvFCnWAtsb9Tx1N4fk,9231
17
+ jsongrapher-4.6.dist-info/WHEEL,sha256=tZoeGjtWxWRfdplE7E3d45VPlLNQnvbKiYnx7gwAy8A,92
18
+ jsongrapher-4.6.dist-info/top_level.txt,sha256=5f7Ui2hCKCPTQOjD540WKghKNYOvUDNfdpnDbIlAD3Y,12
19
+ jsongrapher-4.6.dist-info/RECORD,,