exchanges-wrapper 2.1.48__tar.gz → 2.1.49__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.
- {exchanges_wrapper-2.1.48 → exchanges_wrapper-2.1.49}/PKG-INFO +5 -5
- {exchanges_wrapper-2.1.48 → exchanges_wrapper-2.1.49}/exchanges_wrapper/__init__.py +1 -1
- {exchanges_wrapper-2.1.48 → exchanges_wrapper-2.1.49}/pyproject.toml +5 -5
- {exchanges_wrapper-2.1.48 → exchanges_wrapper-2.1.49}/LICENSE.md +0 -0
- {exchanges_wrapper-2.1.48 → exchanges_wrapper-2.1.49}/README.md +0 -0
- {exchanges_wrapper-2.1.48 → exchanges_wrapper-2.1.49}/exchanges_wrapper/client.py +0 -0
- {exchanges_wrapper-2.1.48 → exchanges_wrapper-2.1.49}/exchanges_wrapper/definitions.py +0 -0
- {exchanges_wrapper-2.1.48 → exchanges_wrapper-2.1.49}/exchanges_wrapper/errors.py +0 -0
- {exchanges_wrapper-2.1.48 → exchanges_wrapper-2.1.49}/exchanges_wrapper/events.py +0 -0
- {exchanges_wrapper-2.1.48 → exchanges_wrapper-2.1.49}/exchanges_wrapper/exch_srv.py +0 -0
- {exchanges_wrapper-2.1.48 → exchanges_wrapper-2.1.49}/exchanges_wrapper/exch_srv_cfg.toml.template +0 -0
- {exchanges_wrapper-2.1.48 → exchanges_wrapper-2.1.49}/exchanges_wrapper/http_client.py +0 -0
- {exchanges_wrapper-2.1.48 → exchanges_wrapper-2.1.49}/exchanges_wrapper/lib.py +0 -0
- {exchanges_wrapper-2.1.48 → exchanges_wrapper-2.1.49}/exchanges_wrapper/martin/__init__.py +0 -0
- {exchanges_wrapper-2.1.48 → exchanges_wrapper-2.1.49}/exchanges_wrapper/parsers/bitfinex.py +0 -0
- {exchanges_wrapper-2.1.48 → exchanges_wrapper-2.1.49}/exchanges_wrapper/parsers/bybit.py +0 -0
- {exchanges_wrapper-2.1.48 → exchanges_wrapper-2.1.49}/exchanges_wrapper/parsers/huobi.py +0 -0
- {exchanges_wrapper-2.1.48 → exchanges_wrapper-2.1.49}/exchanges_wrapper/parsers/okx.py +0 -0
- {exchanges_wrapper-2.1.48 → exchanges_wrapper-2.1.49}/exchanges_wrapper/proto/martin.proto +0 -0
- {exchanges_wrapper-2.1.48 → exchanges_wrapper-2.1.49}/exchanges_wrapper/web_sockets.py +0 -0
|
@@ -1,9 +1,9 @@
|
|
|
1
1
|
Metadata-Version: 2.4
|
|
2
2
|
Name: exchanges-wrapper
|
|
3
|
-
Version: 2.1.
|
|
3
|
+
Version: 2.1.49
|
|
4
4
|
Summary: REST API and WebSocket asyncio wrapper with grpc powered multiplexer server
|
|
5
5
|
Author-email: Thomas Marchand <thomas.marchand@tuta.io>, Jerry Fedorenko <jerry.fedorenko@yahoo.com>
|
|
6
|
-
Requires-Python: >=3.
|
|
6
|
+
Requires-Python: >=3.12
|
|
7
7
|
Description-Content-Type: text/markdown
|
|
8
8
|
Classifier: Programming Language :: Python :: 3
|
|
9
9
|
Classifier: Development Status :: 5 - Production/Stable
|
|
@@ -12,10 +12,10 @@ Classifier: Operating System :: Unix
|
|
|
12
12
|
Classifier: Operating System :: Microsoft :: Windows
|
|
13
13
|
Classifier: Operating System :: MacOS
|
|
14
14
|
License-File: LICENSE.md
|
|
15
|
-
Requires-Dist: crypto-ws-api==2.1.
|
|
15
|
+
Requires-Dist: crypto-ws-api==2.1.9
|
|
16
16
|
Requires-Dist: pyotp==2.9.0
|
|
17
|
-
Requires-Dist: simplejson==
|
|
18
|
-
Requires-Dist: aiohttp
|
|
17
|
+
Requires-Dist: simplejson==4.1.1
|
|
18
|
+
Requires-Dist: aiohttp==3.13.5
|
|
19
19
|
Requires-Dist: expiringdict~=1.2.2
|
|
20
20
|
Requires-Dist: betterproto==2.0.0b7
|
|
21
21
|
Requires-Dist: grpclib~=0.4.8
|
|
@@ -12,7 +12,7 @@ __maintainer__ = "Jerry Fedorenko"
|
|
|
12
12
|
__contact__ = "https://github.com/DogsTailFarmer"
|
|
13
13
|
__email__ = "jerry.fedorenko@yahoo.com"
|
|
14
14
|
__credits__ = ["https://github.com/DanyaSWorlD"]
|
|
15
|
-
__version__ = "2.1.
|
|
15
|
+
__version__ = "2.1.49"
|
|
16
16
|
|
|
17
17
|
from pathlib import Path
|
|
18
18
|
import shutil
|
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
[build-system]
|
|
2
|
-
requires = ["flit_core >=3.
|
|
2
|
+
requires = ["flit_core >=3.12.0,<4"]
|
|
3
3
|
build-backend = "flit_core.buildapi"
|
|
4
4
|
|
|
5
5
|
[project]
|
|
@@ -17,13 +17,13 @@ classifiers=["Programming Language :: Python :: 3",
|
|
|
17
17
|
"Operating System :: Microsoft :: Windows",
|
|
18
18
|
"Operating System :: MacOS"]
|
|
19
19
|
dynamic = ["version", "description"]
|
|
20
|
-
requires-python = ">=3.
|
|
20
|
+
requires-python = ">=3.12"
|
|
21
21
|
|
|
22
22
|
dependencies = [
|
|
23
|
-
"crypto-ws-api==2.1.
|
|
23
|
+
"crypto-ws-api==2.1.9",
|
|
24
24
|
"pyotp==2.9.0",
|
|
25
|
-
"simplejson==
|
|
26
|
-
"aiohttp
|
|
25
|
+
"simplejson==4.1.1",
|
|
26
|
+
"aiohttp==3.13.5",
|
|
27
27
|
"expiringdict~=1.2.2",
|
|
28
28
|
"betterproto==2.0.0b7",
|
|
29
29
|
"grpclib~=0.4.8"
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
{exchanges_wrapper-2.1.48 → exchanges_wrapper-2.1.49}/exchanges_wrapper/exch_srv_cfg.toml.template
RENAMED
|
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
|