wslink 2.0.0__tar.gz → 2.0.1__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.
Files changed (31) hide show
  1. {wslink-2.0.0 → wslink-2.0.1}/PKG-INFO +1 -1
  2. {wslink-2.0.0 → wslink-2.0.1}/setup.cfg +1 -1
  3. {wslink-2.0.0 → wslink-2.0.1}/src/wslink/server.py +7 -13
  4. {wslink-2.0.0 → wslink-2.0.1}/src/wslink.egg-info/PKG-INFO +1 -1
  5. {wslink-2.0.0 → wslink-2.0.1}/MANIFEST.in +0 -0
  6. {wslink-2.0.0 → wslink-2.0.1}/README.rst +0 -0
  7. {wslink-2.0.0 → wslink-2.0.1}/setup.py +0 -0
  8. {wslink-2.0.0 → wslink-2.0.1}/src/wslink/LICENSE +0 -0
  9. {wslink-2.0.0 → wslink-2.0.1}/src/wslink/__init__.py +0 -0
  10. {wslink-2.0.0 → wslink-2.0.1}/src/wslink/backends/__init__.py +0 -0
  11. {wslink-2.0.0 → wslink-2.0.1}/src/wslink/backends/aiohttp/__init__.py +0 -0
  12. {wslink-2.0.0 → wslink-2.0.1}/src/wslink/backends/aiohttp/launcher.py +0 -0
  13. {wslink-2.0.0 → wslink-2.0.1}/src/wslink/backends/aiohttp/relay.py +0 -0
  14. {wslink-2.0.0 → wslink-2.0.1}/src/wslink/backends/generic/__init__.py +0 -0
  15. {wslink-2.0.0 → wslink-2.0.1}/src/wslink/backends/generic/core.py +0 -0
  16. {wslink-2.0.0 → wslink-2.0.1}/src/wslink/backends/jupyter/__init__.py +0 -0
  17. {wslink-2.0.0 → wslink-2.0.1}/src/wslink/backends/jupyter/core.py +0 -0
  18. {wslink-2.0.0 → wslink-2.0.1}/src/wslink/backends/tornado/__init__.py +0 -0
  19. {wslink-2.0.0 → wslink-2.0.1}/src/wslink/backends/tornado/core.py +0 -0
  20. {wslink-2.0.0 → wslink-2.0.1}/src/wslink/chunking.py +0 -0
  21. {wslink-2.0.0 → wslink-2.0.1}/src/wslink/launcher.py +0 -0
  22. {wslink-2.0.0 → wslink-2.0.1}/src/wslink/protocol.py +0 -0
  23. {wslink-2.0.0 → wslink-2.0.1}/src/wslink/publish.py +0 -0
  24. {wslink-2.0.0 → wslink-2.0.1}/src/wslink/relay.py +0 -0
  25. {wslink-2.0.0 → wslink-2.0.1}/src/wslink/ssl_context.py +0 -0
  26. {wslink-2.0.0 → wslink-2.0.1}/src/wslink/uri.py +0 -0
  27. {wslink-2.0.0 → wslink-2.0.1}/src/wslink/websocket.py +0 -0
  28. {wslink-2.0.0 → wslink-2.0.1}/src/wslink.egg-info/SOURCES.txt +0 -0
  29. {wslink-2.0.0 → wslink-2.0.1}/src/wslink.egg-info/dependency_links.txt +0 -0
  30. {wslink-2.0.0 → wslink-2.0.1}/src/wslink.egg-info/requires.txt +0 -0
  31. {wslink-2.0.0 → wslink-2.0.1}/src/wslink.egg-info/top_level.txt +0 -0
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.1
2
2
  Name: wslink
3
- Version: 2.0.0
3
+ Version: 2.0.1
4
4
  Summary: Python/JavaScript library for communicating over WebSocket
5
5
  Home-page: https://github.com/kitware/wslink
6
6
  Author: Kitware, Inc.
@@ -1,5 +1,5 @@
1
1
  [metadata]
2
- version = 2.0.0
2
+ version = 2.0.1
3
3
 
4
4
  [egg_info]
5
5
  tag_build =
@@ -18,13 +18,13 @@ ws_server = None
18
18
 
19
19
  # =============================================================================
20
20
  # Setup default arguments to be parsed
21
- # -s, --nosignalhandlers
22
- # -d, --debug
23
- # -i, --host localhost
21
+ # --nosignalhandlers
22
+ # --debug
23
+ # --host localhost
24
24
  # -p, --port 8080
25
- # -t, --timeout 300 (seconds)
26
- # -c, --content '/www' (No content means WebSocket only)
27
- # -a, --authKey vtkweb-secret
25
+ # --timeout 300 (seconds)
26
+ # --content '/www' (No content means WebSocket only)
27
+ # --authKey vtkweb-secret
28
28
  # =============================================================================
29
29
 
30
30
 
@@ -35,16 +35,14 @@ def add_arguments(parser):
35
35
  """
36
36
 
37
37
  parser.add_argument(
38
- "-d", "--debug", help="log debugging messages to stdout", action="store_true"
38
+ "--debug", help="log debugging messages to stdout", action="store_true"
39
39
  )
40
40
  parser.add_argument(
41
- "-s",
42
41
  "--nosignalhandlers",
43
42
  help="Prevent installation of signal handlers so server can be started inside a thread.",
44
43
  action="store_true",
45
44
  )
46
45
  parser.add_argument(
47
- "-i",
48
46
  "--host",
49
47
  type=str,
50
48
  default="localhost",
@@ -58,26 +56,22 @@ def add_arguments(parser):
58
56
  help="port number for the web-server to listen on (default: 8080)",
59
57
  )
60
58
  parser.add_argument(
61
- "-t",
62
59
  "--timeout",
63
60
  type=int,
64
61
  default=300,
65
62
  help="timeout for reaping process on idle in seconds (default: 300s, 0 to disable)",
66
63
  )
67
64
  parser.add_argument(
68
- "-c",
69
65
  "--content",
70
66
  default="",
71
67
  help="root for web-pages to serve (default: none)",
72
68
  )
73
69
  parser.add_argument(
74
- "-a",
75
70
  "--authKey",
76
71
  default="wslink-secret",
77
72
  help="Authentication key for clients to connect to the WebSocket.",
78
73
  )
79
74
  parser.add_argument(
80
- "-ws",
81
75
  "--ws-endpoint",
82
76
  type=str,
83
77
  default="ws",
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.1
2
2
  Name: wslink
3
- Version: 2.0.0
3
+ Version: 2.0.1
4
4
  Summary: Python/JavaScript library for communicating over WebSocket
5
5
  Home-page: https://github.com/kitware/wslink
6
6
  Author: Kitware, Inc.
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes