crypto-ws-api 2.0.10__tar.gz → 2.0.12__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.
- {crypto-ws-api-2.0.10 → crypto-ws-api-2.0.12}/CHANGELOG.md +8 -0
- {crypto-ws-api-2.0.10 → crypto-ws-api-2.0.12}/PKG-INFO +2 -2
- {crypto-ws-api-2.0.10 → crypto-ws-api-2.0.12}/crypto_ws_api/__init__.py +2 -2
- {crypto-ws-api-2.0.10 → crypto-ws-api-2.0.12}/pyproject.toml +1 -1
- {crypto-ws-api-2.0.10 → crypto-ws-api-2.0.12}/requirements.txt +1 -1
- {crypto-ws-api-2.0.10 → crypto-ws-api-2.0.12}/.deepsource.toml +0 -0
- {crypto-ws-api-2.0.10 → crypto-ws-api-2.0.12}/LICENSE.md +0 -0
- {crypto-ws-api-2.0.10 → crypto-ws-api-2.0.12}/README.md +0 -0
- {crypto-ws-api-2.0.10 → crypto-ws-api-2.0.12}/crypto_ws_api/demo.py +0 -0
- {crypto-ws-api-2.0.10 → crypto-ws-api-2.0.12}/crypto_ws_api/ws_api.toml.template +0 -0
- {crypto-ws-api-2.0.10 → crypto-ws-api-2.0.12}/crypto_ws_api/ws_session.py +0 -0
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
Metadata-Version: 2.1
|
|
2
2
|
Name: crypto-ws-api
|
|
3
|
-
Version: 2.0.
|
|
3
|
+
Version: 2.0.12
|
|
4
4
|
Summary: Crypto WS API connector for ASYNC requests
|
|
5
5
|
Author-email: Jerry Fedorenko <jerry.fedorenko@yahoo.com>
|
|
6
6
|
Requires-Python: >=3.8
|
|
@@ -15,7 +15,7 @@ Requires-Dist: shortuuid~=1.0.11
|
|
|
15
15
|
Requires-Dist: platformdirs~=3.10.0
|
|
16
16
|
Requires-Dist: toml~=0.10.2
|
|
17
17
|
Requires-Dist: websockets~=12.0
|
|
18
|
-
Requires-Dist: ujson~=5.
|
|
18
|
+
Requires-Dist: ujson~=5.10.0
|
|
19
19
|
Project-URL: Source, https://github.com/DogsTailFarmer/crypto-ws-api
|
|
20
20
|
|
|
21
21
|
<h1 align="center"><img align="center" src="https://user-images.githubusercontent.com/77513676/250364389-cbedc171-a930-4467-a0cd-21627a6a41ed.svg" width="75">Crypto WS API connector for ASYNC requests</h1>
|
|
@@ -13,13 +13,13 @@ __maintainer__ = "Jerry Fedorenko"
|
|
|
13
13
|
__contact__ = "https://github.com/DogsTailFarmer"
|
|
14
14
|
__email__ = "jerry.fedorenko@yahoo.com"
|
|
15
15
|
__credits__ = ["https://github.com/DanyaSWorlD"]
|
|
16
|
-
__version__ = "2.0.
|
|
16
|
+
__version__ = "2.0.12"
|
|
17
17
|
|
|
18
18
|
from pathlib import Path
|
|
19
19
|
import shutil
|
|
20
20
|
from platformdirs import user_config_path
|
|
21
21
|
|
|
22
|
-
|
|
22
|
+
VERSION = __version__
|
|
23
23
|
TIMEOUT = 5 # sec timeout for WSS initialization and get response
|
|
24
24
|
DELAY = 0.1 # sec delay in keepalive loop
|
|
25
25
|
# Maximum str size for unique query ID
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|