unicex 0.13.2__py3-none-any.whl → 0.13.3__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.
unicex/_base/websocket.py CHANGED
@@ -110,24 +110,26 @@ class Websocket:
110
110
 
111
111
  async def _connect(self) -> None:
112
112
  """Подключается к вебсокету и настраивает соединение."""
113
- self._logger.debug(f"Estabilishing connection with {self._url}")
114
- async for conn in websockets.connect(uri=self._url, **self._generate_ws_kwargs()):
115
- try:
116
- self._logger.info(f"Websocket connection was established to {self._url}")
117
- await self._after_connect(conn)
118
-
119
- # Цикл получения сообщений
120
- while self._running:
121
- message = await conn.recv()
122
- await self._handle_message(message)
123
-
124
- except websockets.exceptions.ConnectionClosed as e:
125
- self._logger.error(f"Websocket connection was closed unexpectedly: {e}")
126
- except Exception as e:
127
- self._logger.error(f"Unexpected error in websosocket connection: {e}")
128
- finally:
129
- await asyncio.sleep(self._reconnect_timeout)
130
- await self._after_disconnect()
113
+ self._logger.debug(f"Establishing connection with {self._url}")
114
+ while self._running:
115
+ async with websockets.connect(uri=self._url, **self._generate_ws_kwargs()) as conn:
116
+ try:
117
+ self._logger.info(f"Websocket connection was established to {self._url}")
118
+ await self._after_connect(conn)
119
+
120
+ # Цикл получения сообщений
121
+ while self._running:
122
+ message = await conn.recv()
123
+ await self._handle_message(message)
124
+
125
+ except websockets.exceptions.ConnectionClosed as e:
126
+ self._logger.error(f"Websocket connection was closed unexpectedly: {e}")
127
+ except Exception as e:
128
+ self._logger.error(f"Unexpected error in websosocket connection: {e}")
129
+ finally:
130
+ if self._running:
131
+ await asyncio.sleep(self._reconnect_timeout)
132
+ await self._after_disconnect()
131
133
 
132
134
  async def _handle_message(self, message: str | bytes) -> None:
133
135
  """Обрабатывает входящее сообщение вебсокета."""
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.4
2
2
  Name: unicex
3
- Version: 0.13.2
3
+ Version: 0.13.3
4
4
  Summary: Unified Crypto Exchange API
5
5
  Author-email: LoveBloodAndDiamonds <ayazshakirzyanov27@gmail.com>
6
6
  License: BSD 3-Clause License
@@ -11,7 +11,7 @@ unicex/_abc/uni_client.py,sha256=ZjxK8aqCGLUUYy1UQTM9EvWn1IXwMkH2Db8sZrs1e_I,137
11
11
  unicex/_abc/uni_websocket_manager.py,sha256=yYKypPkIe3rKfWBuTsS8rkwIPljpd1588CYDkeTOYqE,9905
12
12
  unicex/_base/__init__.py,sha256=0TmevATGnRB3qow6tkCR8dQKNZCWKeib6YQjNJ4a1b0,236
13
13
  unicex/_base/client.py,sha256=asIIQLZlRwwmUDvxveSv7aCvth54iiSRJdz19bxGorI,8904
14
- unicex/_base/websocket.py,sha256=7IUIO2-KyjTswK3nTkRI7uQkNq6NYS_EhaG7tJQCPeg,11430
14
+ unicex/_base/websocket.py,sha256=8bihWB54E3LNNgkmTlKflD_p5NBWPOLNYEFCoi5Hxhw,11565
15
15
  unicex/binance/__init__.py,sha256=sDk4ZjakRdpFMaMSpOCfqjf6ZPfAS9tlrt4WlDHtDkw,932
16
16
  unicex/binance/adapter.py,sha256=JbUFyjnDAFtyuYYrh90YeOvQOZQ6faim0nWS6U0NxXw,8799
17
17
  unicex/binance/client.py,sha256=1qPx0uRT4prC6saLBQ55pXDWcWTCKhYEwVIysiihPgU,60984
@@ -86,8 +86,8 @@ unicex/okx/uni_client.py,sha256=E_Wod0JSGt1K6k1mAIWnOv350pELbv-nic7g1KgOuos,8694
86
86
  unicex/okx/uni_websocket_manager.py,sha256=b4f_QjA64DJmENQdIGb5IOVc7kvit7KMCdWeCmRbxGY,9326
87
87
  unicex/okx/user_websocket.py,sha256=8c9kpm-xVa729pW93OKUGLHaE9MY0uzEpjIgNIFRF80,126
88
88
  unicex/okx/websocket_manager.py,sha256=wROXTUDqKzOE-wDnCtXso_MC4SzfPuPols5aPg_Z3y4,26027
89
- unicex-0.13.2.dist-info/licenses/LICENSE,sha256=lNNK4Vqak9cXm6qVJLhbqS7iR_BMj6k7fd7XQ6l1k54,1507
90
- unicex-0.13.2.dist-info/METADATA,sha256=fgCfUXJoozTkutNdOQ8VwzYfQtoqS693WP7Z2Jg7INw,11752
91
- unicex-0.13.2.dist-info/WHEEL,sha256=_zCd3N1l69ArxyTb8rzEoP9TpbYXkqRFSNOD5OuxnTs,91
92
- unicex-0.13.2.dist-info/top_level.txt,sha256=_7rar-0OENIg4KRy6cgjWiebFYAJhjKEcMggAocGWG4,7
93
- unicex-0.13.2.dist-info/RECORD,,
89
+ unicex-0.13.3.dist-info/licenses/LICENSE,sha256=lNNK4Vqak9cXm6qVJLhbqS7iR_BMj6k7fd7XQ6l1k54,1507
90
+ unicex-0.13.3.dist-info/METADATA,sha256=dZlyDRzk7KpasPB58YyMzPGcr8p50fu2yRBKpb9EylE,11752
91
+ unicex-0.13.3.dist-info/WHEEL,sha256=_zCd3N1l69ArxyTb8rzEoP9TpbYXkqRFSNOD5OuxnTs,91
92
+ unicex-0.13.3.dist-info/top_level.txt,sha256=_7rar-0OENIg4KRy6cgjWiebFYAJhjKEcMggAocGWG4,7
93
+ unicex-0.13.3.dist-info/RECORD,,