wslink 1.11.1__py3-none-any.whl → 1.11.2__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.
wslink/protocol.py CHANGED
@@ -7,7 +7,7 @@ import re
7
7
  import traceback
8
8
 
9
9
  from wslink import schedule_coroutine
10
- from wslink import publish as pub
10
+ from wslink.publish import PublishManager
11
11
 
12
12
 
13
13
  class AbstractWebApp:
@@ -136,6 +136,7 @@ class WslinkHandler(object):
136
136
  self.connections = {}
137
137
  self.authentified_client_ids = set()
138
138
  self.attachment_atomic = asyncio.Lock()
139
+ self.pub_manager = PublishManager()
139
140
 
140
141
  # Build the rpc method dictionary, assuming we were given a serverprotocol
141
142
  if self.getServerProtocol():
@@ -165,7 +166,7 @@ class WslinkHandler(object):
165
166
 
166
167
  @property
167
168
  def publishManager(self):
168
- return pub.publishManager
169
+ return self.pub_manager
169
170
 
170
171
  @property
171
172
  def reverse_connection_client_id(self):
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.1
2
2
  Name: wslink
3
- Version: 1.11.1
3
+ Version: 1.11.2
4
4
  Summary: Python/JavaScript library for communicating over WebSocket
5
5
  Home-page: https://github.com/kitware/wslink
6
6
  Author: Kitware, Inc.
@@ -21,7 +21,7 @@ Classifier: Programming Language :: Python :: 3.7
21
21
  Classifier: Programming Language :: Python :: 3.8
22
22
  Classifier: Programming Language :: Python :: 3.9
23
23
  Classifier: Topic :: Software Development :: Libraries :: Python Modules
24
- Requires-Dist: aiohttp (<4)
24
+ Requires-Dist: aiohttp <4
25
25
  Provides-Extra: ssl
26
26
  Requires-Dist: cryptography ; extra == 'ssl'
27
27
 
@@ -1,7 +1,7 @@
1
1
  wslink/LICENSE,sha256=I44UH7kDVqxDLnnlOWw_hFL2Fz7RjQ_4vPzZv9NYgTU,1483
2
2
  wslink/__init__.py,sha256=AbEm-sUSoGL-uLpnbK1rSSjHSvyW-bMsGHWie7FgMHw,2708
3
3
  wslink/launcher.py,sha256=4l_z3l2xkRSiH8hWbZzjtsIbBeujl-P8bTA0TBtJEEg,21137
4
- wslink/protocol.py,sha256=TVTkR2bQCFXs6QABsM8VRnNouDIp082u__WC6b242bY,17912
4
+ wslink/protocol.py,sha256=acKNj_J4AdFKpIUz-6eA9MLcjucy_xGhs2WLHvu_Gc4,17962
5
5
  wslink/publish.py,sha256=rSPG-GSVv4HawLXnKm9yceLadHx92EPR9XnGeSuOGlc,2573
6
6
  wslink/relay.py,sha256=E8Lzu2Ay7KbOheN1-ArAZawo8lLqdDgJXOZSBuMknYs,86
7
7
  wslink/server.py,sha256=FKSJAKHDyfkNVM45-M-y1Zn8hh2TTYto1hTCIJx1pp8,9440
@@ -16,7 +16,7 @@ wslink/backends/generic/__init__.py,sha256=Qu65gWsd2xCSsxybnDtEDI5vMjHN-F5jgPZOy
16
16
  wslink/backends/generic/core.py,sha256=2BJrdCEyMe3OmT_h-wLeyw7QzpVTnm4O8zSkJmnDKyM,4003
17
17
  wslink/backends/tornado/__init__.py,sha256=Qu65gWsd2xCSsxybnDtEDI5vMjHN-F5jgPZOyNIxnGs,112
18
18
  wslink/backends/tornado/core.py,sha256=tPMkkhWuO_ovkisVim0zcegwZKEAG4IRUdd_O_0a_R0,2157
19
- wslink-1.11.1.dist-info/METADATA,sha256=a6w2bRrJRlF_48yeDP2Mi62l6kaGEyR4SEnxuvq3Uh8,3018
20
- wslink-1.11.1.dist-info/WHEEL,sha256=pkctZYzUS4AYVn6dJ-7367OJZivF2e8RA9b_ZBjif18,92
21
- wslink-1.11.1.dist-info/top_level.txt,sha256=N0d8eqvhwhfW1p1yPTmvxlbzhjz7ZyhBfysNvaFqpQY,7
22
- wslink-1.11.1.dist-info/RECORD,,
19
+ wslink-1.11.2.dist-info/METADATA,sha256=mHgRzEOs6-Tm_OUe6mZM-u14GR-ErWIR_anG5XJOLKs,3016
20
+ wslink-1.11.2.dist-info/WHEEL,sha256=yQN5g4mg4AybRjkgi-9yy4iQEFibGQmlz78Pik5Or-A,92
21
+ wslink-1.11.2.dist-info/top_level.txt,sha256=N0d8eqvhwhfW1p1yPTmvxlbzhjz7ZyhBfysNvaFqpQY,7
22
+ wslink-1.11.2.dist-info/RECORD,,
@@ -1,5 +1,5 @@
1
1
  Wheel-Version: 1.0
2
- Generator: bdist_wheel (0.40.0)
2
+ Generator: bdist_wheel (0.41.2)
3
3
  Root-Is-Purelib: true
4
4
  Tag: py3-none-any
5
5