Vease-Viewer 2.3.13rc1__py3-none-any.whl → 2.3.14__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.
Potentially problematic release.
This version of Vease-Viewer might be problematic. Click here for more details.
- vease_viewer/app.py +3 -1
- vease_viewer/rpc/protocols.py +12 -2
- vease_viewer-2.3.14.dist-info/METADATA +53 -0
- vease_viewer-2.3.14.dist-info/RECORD +9 -0
- vease_viewer-2.3.13rc1.dist-info/METADATA +0 -45
- vease_viewer-2.3.13rc1.dist-info/RECORD +0 -9
- {vease_viewer-2.3.13rc1.dist-info → vease_viewer-2.3.14.dist-info}/WHEEL +0 -0
- {vease_viewer-2.3.13rc1.dist-info → vease_viewer-2.3.14.dist-info}/entry_points.txt +0 -0
- {vease_viewer-2.3.13rc1.dist-info → vease_viewer-2.3.14.dist-info}/licenses/LICENSE +0 -0
- {vease_viewer-2.3.13rc1.dist-info → vease_viewer-2.3.14.dist-info}/top_level.txt +0 -0
vease_viewer/app.py
CHANGED
|
@@ -6,14 +6,16 @@ from opengeodeweb_viewer.vtkw_server import _Server, run_server
|
|
|
6
6
|
# Local application imports
|
|
7
7
|
from vease_viewer.rpc.protocols import VtkVeaseViewerView
|
|
8
8
|
|
|
9
|
+
|
|
9
10
|
class VeaseViewerServer(_Server):
|
|
10
11
|
def initialize(self):
|
|
11
12
|
_Server.initialize(self)
|
|
12
13
|
self.registerVtkWebProtocol(VtkVeaseViewerView())
|
|
13
|
-
|
|
14
|
+
|
|
14
15
|
|
|
15
16
|
def run_viewer():
|
|
16
17
|
run_server(VeaseViewerServer)
|
|
17
18
|
|
|
19
|
+
|
|
18
20
|
if __name__ == "__main__":
|
|
19
21
|
run_viewer()
|
vease_viewer/rpc/protocols.py
CHANGED
|
@@ -9,6 +9,7 @@ from wslink import register as exportRpc
|
|
|
9
9
|
|
|
10
10
|
# Local application imports
|
|
11
11
|
|
|
12
|
+
|
|
12
13
|
class VtkVeaseViewerView(vtk_protocols.vtkWebProtocol):
|
|
13
14
|
prefix = "vease_viewer."
|
|
14
15
|
schemas_dict = get_schemas_dict(os.path.join(os.path.dirname(__file__), "schemas"))
|
|
@@ -18,7 +19,16 @@ class VtkVeaseViewerView(vtk_protocols.vtkWebProtocol):
|
|
|
18
19
|
|
|
19
20
|
@exportRpc(prefix + schemas_dict["microservice_version"]["rpc"])
|
|
20
21
|
def microservice_version(self, params):
|
|
21
|
-
print(
|
|
22
|
+
print(
|
|
23
|
+
self.prefix + self.schemas_dict["microservice_version"]["rpc"],
|
|
24
|
+
f"{params=}",
|
|
25
|
+
flush=True,
|
|
26
|
+
)
|
|
22
27
|
validate_schema(params, self.schemas_dict["microservice_version"])
|
|
23
28
|
|
|
24
|
-
return {"microservice_version": metadata.distribution("vease_viewer").version}
|
|
29
|
+
return {"microservice_version": metadata.distribution("vease_viewer").version}
|
|
30
|
+
|
|
31
|
+
@exportRpc("kill")
|
|
32
|
+
def kill(self) -> None:
|
|
33
|
+
print("Manual viewer kill, shutting down...", flush=True)
|
|
34
|
+
os._exit(0)
|
|
@@ -0,0 +1,53 @@
|
|
|
1
|
+
Metadata-Version: 2.4
|
|
2
|
+
Name: Vease-Viewer
|
|
3
|
+
Version: 2.3.14
|
|
4
|
+
Summary: Vease-Viewer is the viewer microservice of Vease
|
|
5
|
+
Author-email: Geode-solutions <team-web@geode-solutions.com>
|
|
6
|
+
Project-URL: Homepage, https://github.com/Geode-solutions/Vease-Viewer
|
|
7
|
+
Project-URL: Bug Tracker, https://github.com/Geode-solutions/Vease-Viewer/issues
|
|
8
|
+
Classifier: Programming Language :: Python :: 3
|
|
9
|
+
Classifier: License :: OSI Approved :: MIT License
|
|
10
|
+
Classifier: Operating System :: OS Independent
|
|
11
|
+
Requires-Python: <3.13,>=3.9
|
|
12
|
+
Description-Content-Type: text/markdown
|
|
13
|
+
License-File: LICENSE
|
|
14
|
+
Requires-Dist: aiohappyeyeballs~=2.0
|
|
15
|
+
Requires-Dist: aiohttp~=3.0
|
|
16
|
+
Requires-Dist: aiosignal~=1.0
|
|
17
|
+
Requires-Dist: attrs~=25.0
|
|
18
|
+
Requires-Dist: blinker~=1.0
|
|
19
|
+
Requires-Dist: click~=8.0
|
|
20
|
+
Requires-Dist: contourpy~=1.0
|
|
21
|
+
Requires-Dist: cycler~=0.0
|
|
22
|
+
Requires-Dist: fastjsonschema~=2.0
|
|
23
|
+
Requires-Dist: flask~=3.0
|
|
24
|
+
Requires-Dist: flask-sqlalchemy~=3.0
|
|
25
|
+
Requires-Dist: fonttools~=4.0
|
|
26
|
+
Requires-Dist: frozenlist~=1.0
|
|
27
|
+
Requires-Dist: greenlet~=3.0
|
|
28
|
+
Requires-Dist: idna~=3.0
|
|
29
|
+
Requires-Dist: itsdangerous~=2.0
|
|
30
|
+
Requires-Dist: jinja2~=3.0
|
|
31
|
+
Requires-Dist: kiwisolver~=1.0
|
|
32
|
+
Requires-Dist: markupsafe~=3.0
|
|
33
|
+
Requires-Dist: matplotlib~=3.0
|
|
34
|
+
Requires-Dist: multidict~=6.0
|
|
35
|
+
Requires-Dist: numpy~=2.0
|
|
36
|
+
Requires-Dist: opengeodeweb-microservice~=1.0
|
|
37
|
+
Requires-Dist: opengeodeweb-viewer~=1.0
|
|
38
|
+
Requires-Dist: packaging~=25.0
|
|
39
|
+
Requires-Dist: pillow~=11.0
|
|
40
|
+
Requires-Dist: propcache~=0.0
|
|
41
|
+
Requires-Dist: pyparsing~=3.0
|
|
42
|
+
Requires-Dist: python-dateutil==2.9.0.post0
|
|
43
|
+
Requires-Dist: six~=1.0
|
|
44
|
+
Requires-Dist: sqlalchemy~=2.0
|
|
45
|
+
Requires-Dist: typing-extensions~=4.0
|
|
46
|
+
Requires-Dist: vtk~=9.0
|
|
47
|
+
Requires-Dist: websocket-client~=1.0
|
|
48
|
+
Requires-Dist: werkzeug~=3.0
|
|
49
|
+
Requires-Dist: wslink~=1.0
|
|
50
|
+
Requires-Dist: yarl~=1.0
|
|
51
|
+
Dynamic: license-file
|
|
52
|
+
|
|
53
|
+
# Vease-Viewer
|
|
@@ -0,0 +1,9 @@
|
|
|
1
|
+
vease_viewer/app.py,sha256=8TGdMB4jhKmWWpoEJ6Lq9QyLd4D2H559YZwvA1AC2ZI,454
|
|
2
|
+
vease_viewer/rpc/protocols.py,sha256=pK_wKNdG_edG9nLRK8kGZs3OZb6N430Y_kuyeDlLfHQ,1090
|
|
3
|
+
vease_viewer/rpc/schemas/microservice_version.json,sha256=AjOLp1fuLNcP_4YpQIQRSSNDPznfTUkf6kbqBjIPo0o,126
|
|
4
|
+
vease_viewer-2.3.14.dist-info/licenses/LICENSE,sha256=IMF9i4xIpgCADf0U-V1cuf9HBmqWQd3qtI3FSuyW4zE,26526
|
|
5
|
+
vease_viewer-2.3.14.dist-info/METADATA,sha256=LfXBHb43cb9rwS_3Coq3P7zwdT8g6pUXjlD-I4_ThzI,1742
|
|
6
|
+
vease_viewer-2.3.14.dist-info/WHEEL,sha256=_zCd3N1l69ArxyTb8rzEoP9TpbYXkqRFSNOD5OuxnTs,91
|
|
7
|
+
vease_viewer-2.3.14.dist-info/entry_points.txt,sha256=n39U_EW4l0moq5yJ-yavxNP3WHf_L5AITJpez8H2TWg,61
|
|
8
|
+
vease_viewer-2.3.14.dist-info/top_level.txt,sha256=ulf1U3rlf8f1kleu7P2T6vZIhVgwi5aS1_qgNaSwiwA,13
|
|
9
|
+
vease_viewer-2.3.14.dist-info/RECORD,,
|
|
@@ -1,45 +0,0 @@
|
|
|
1
|
-
Metadata-Version: 2.4
|
|
2
|
-
Name: Vease-Viewer
|
|
3
|
-
Version: 2.3.13rc1
|
|
4
|
-
Summary: Vease-Viewer is the viewer microservice of Vease
|
|
5
|
-
Author-email: Geode-solutions <team-web@geode-solutions.com>
|
|
6
|
-
Project-URL: Homepage, https://github.com/Geode-solutions/Vease-Viewer
|
|
7
|
-
Project-URL: Bug Tracker, https://github.com/Geode-solutions/Vease-Viewer/issues
|
|
8
|
-
Classifier: Programming Language :: Python :: 3
|
|
9
|
-
Classifier: License :: OSI Approved :: MIT License
|
|
10
|
-
Classifier: Operating System :: OS Independent
|
|
11
|
-
Requires-Python: <3.13,>=3.9
|
|
12
|
-
Description-Content-Type: text/markdown
|
|
13
|
-
License-File: LICENSE
|
|
14
|
-
Requires-Dist: aiohappyeyeballs==2.6.1
|
|
15
|
-
Requires-Dist: aiohttp==3.12.14
|
|
16
|
-
Requires-Dist: aiosignal==1.4.0
|
|
17
|
-
Requires-Dist: async-timeout==5.0.1
|
|
18
|
-
Requires-Dist: attrs==25.3.0
|
|
19
|
-
Requires-Dist: contourpy==1.3.2
|
|
20
|
-
Requires-Dist: cycler==0.12.1
|
|
21
|
-
Requires-Dist: fastjsonschema==2.21.1
|
|
22
|
-
Requires-Dist: fonttools==4.59.0
|
|
23
|
-
Requires-Dist: frozenlist==1.7.0
|
|
24
|
-
Requires-Dist: idna==3.10
|
|
25
|
-
Requires-Dist: kiwisolver==1.4.8
|
|
26
|
-
Requires-Dist: matplotlib==3.10.3
|
|
27
|
-
Requires-Dist: multidict==6.6.3
|
|
28
|
-
Requires-Dist: numpy==2.2.6
|
|
29
|
-
Requires-Dist: opengeodeweb-viewer[gpu]==1.10.0
|
|
30
|
-
Requires-Dist: packaging==25.0
|
|
31
|
-
Requires-Dist: pillow==11.3.0
|
|
32
|
-
Requires-Dist: propcache==0.3.2
|
|
33
|
-
Requires-Dist: pyparsing==3.2.3
|
|
34
|
-
Requires-Dist: python-dateutil==2.9.0.post0
|
|
35
|
-
Requires-Dist: six==1.17.0
|
|
36
|
-
Requires-Dist: typing-extensions==4.14.1
|
|
37
|
-
Requires-Dist: vtk==9.3.1
|
|
38
|
-
Requires-Dist: websocket-client==1.8.0
|
|
39
|
-
Requires-Dist: wslink==1.12.4
|
|
40
|
-
Requires-Dist: yarl==1.20.1
|
|
41
|
-
Provides-Extra: gpu
|
|
42
|
-
Requires-Dist: vtk==9.*; extra == "gpu"
|
|
43
|
-
Dynamic: license-file
|
|
44
|
-
|
|
45
|
-
# Vease-Viewer
|
|
@@ -1,9 +0,0 @@
|
|
|
1
|
-
vease_viewer/app.py,sha256=7ZVoW6741GjmR7CA592TAFSZUJIdkPM0BQameOlDKRs,460
|
|
2
|
-
vease_viewer/rpc/protocols.py,sha256=aVrx5U-AaLgr8SL8lxw7Fj0m9VNqNUElEcPtGsfqREA,903
|
|
3
|
-
vease_viewer/rpc/schemas/microservice_version.json,sha256=AjOLp1fuLNcP_4YpQIQRSSNDPznfTUkf6kbqBjIPo0o,126
|
|
4
|
-
vease_viewer-2.3.13rc1.dist-info/licenses/LICENSE,sha256=IMF9i4xIpgCADf0U-V1cuf9HBmqWQd3qtI3FSuyW4zE,26526
|
|
5
|
-
vease_viewer-2.3.13rc1.dist-info/METADATA,sha256=I45ftdA9vem23rBtNWqiA1NAWka6CsSVZB0B5ADSnYc,1561
|
|
6
|
-
vease_viewer-2.3.13rc1.dist-info/WHEEL,sha256=_zCd3N1l69ArxyTb8rzEoP9TpbYXkqRFSNOD5OuxnTs,91
|
|
7
|
-
vease_viewer-2.3.13rc1.dist-info/entry_points.txt,sha256=n39U_EW4l0moq5yJ-yavxNP3WHf_L5AITJpez8H2TWg,61
|
|
8
|
-
vease_viewer-2.3.13rc1.dist-info/top_level.txt,sha256=ulf1U3rlf8f1kleu7P2T6vZIhVgwi5aS1_qgNaSwiwA,13
|
|
9
|
-
vease_viewer-2.3.13rc1.dist-info/RECORD,,
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|