python-binance 1.0.26__tar.gz → 1.0.28__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.
- {python_binance-1.0.26/python_binance.egg-info → python_binance-1.0.28}/PKG-INFO +2 -2
- {python_binance-1.0.26 → python_binance-1.0.28}/README.rst +1 -1
- {python_binance-1.0.26 → python_binance-1.0.28}/binance/__init__.py +4 -2
- {python_binance-1.0.26 → python_binance-1.0.28}/binance/async_client.py +1472 -2
- {python_binance-1.0.26 → python_binance-1.0.28}/binance/base_client.py +14 -0
- {python_binance-1.0.26 → python_binance-1.0.28}/binance/client.py +5785 -491
- {python_binance-1.0.26 → python_binance-1.0.28}/binance/ws/keepalive_websocket.py +21 -9
- {python_binance-1.0.26 → python_binance-1.0.28}/binance/ws/reconnecting_websocket.py +4 -5
- {python_binance-1.0.26 → python_binance-1.0.28}/binance/ws/streams.py +174 -63
- {python_binance-1.0.26 → python_binance-1.0.28}/binance/ws/threaded_stream.py +15 -5
- {python_binance-1.0.26 → python_binance-1.0.28}/binance/ws/websocket_api.py +6 -5
- {python_binance-1.0.26 → python_binance-1.0.28/python_binance.egg-info}/PKG-INFO +2 -2
- {python_binance-1.0.26 → python_binance-1.0.28}/python_binance.egg-info/SOURCES.txt +3 -0
- {python_binance-1.0.26 → python_binance-1.0.28}/tests/test_async_client.py +27 -0
- {python_binance-1.0.26 → python_binance-1.0.28}/tests/test_async_client_futures.py +29 -8
- {python_binance-1.0.26 → python_binance-1.0.28}/tests/test_async_client_ws_futures_requests.py +38 -1
- {python_binance-1.0.26 → python_binance-1.0.28}/tests/test_client.py +32 -0
- {python_binance-1.0.26 → python_binance-1.0.28}/tests/test_client_futures.py +21 -8
- {python_binance-1.0.26 → python_binance-1.0.28}/tests/test_client_ws_api.py +30 -0
- python_binance-1.0.28/tests/test_init.py +55 -0
- {python_binance-1.0.26 → python_binance-1.0.28}/tests/test_reconnecting_websocket.py +7 -1
- python_binance-1.0.28/tests/test_streams.py +91 -0
- python_binance-1.0.28/tests/test_streams_options.py +100 -0
- python_binance-1.0.28/tests/test_threaded_stream.py +193 -0
- {python_binance-1.0.26 → python_binance-1.0.28}/tests/test_ws_api.py +76 -8
- python_binance-1.0.26/tests/test_streams.py +0 -15
- {python_binance-1.0.26 → python_binance-1.0.28}/LICENSE +0 -0
- {python_binance-1.0.26 → python_binance-1.0.28}/binance/enums.py +0 -0
- {python_binance-1.0.26 → python_binance-1.0.28}/binance/exceptions.py +0 -0
- {python_binance-1.0.26 → python_binance-1.0.28}/binance/helpers.py +0 -0
- {python_binance-1.0.26 → python_binance-1.0.28}/binance/ws/__init__.py +0 -0
- {python_binance-1.0.26 → python_binance-1.0.28}/binance/ws/constants.py +0 -0
- {python_binance-1.0.26 → python_binance-1.0.28}/binance/ws/depthcache.py +0 -0
- {python_binance-1.0.26 → python_binance-1.0.28}/pyproject.toml +0 -0
- {python_binance-1.0.26 → python_binance-1.0.28}/python_binance.egg-info/dependency_links.txt +0 -0
- {python_binance-1.0.26 → python_binance-1.0.28}/python_binance.egg-info/requires.txt +0 -0
- {python_binance-1.0.26 → python_binance-1.0.28}/python_binance.egg-info/top_level.txt +0 -0
- {python_binance-1.0.26 → python_binance-1.0.28}/setup.cfg +0 -0
- {python_binance-1.0.26 → python_binance-1.0.28}/setup.py +0 -0
- {python_binance-1.0.26 → python_binance-1.0.28}/tests/test_api_request.py +0 -0
- {python_binance-1.0.26 → python_binance-1.0.28}/tests/test_async_client_gift_card copy.py +0 -0
- {python_binance-1.0.26 → python_binance-1.0.28}/tests/test_async_client_margin.py +0 -0
- {python_binance-1.0.26 → python_binance-1.0.28}/tests/test_async_client_options.py +0 -0
- {python_binance-1.0.26 → python_binance-1.0.28}/tests/test_async_client_portfolio.py +0 -0
- {python_binance-1.0.26 → python_binance-1.0.28}/tests/test_async_client_ws_api.py +0 -0
- {python_binance-1.0.26 → python_binance-1.0.28}/tests/test_client_gift_card.py +0 -0
- {python_binance-1.0.26 → python_binance-1.0.28}/tests/test_client_margin.py +0 -0
- {python_binance-1.0.26 → python_binance-1.0.28}/tests/test_client_options.py +0 -0
- {python_binance-1.0.26 → python_binance-1.0.28}/tests/test_client_portfolio.py +0 -0
- {python_binance-1.0.26 → python_binance-1.0.28}/tests/test_client_ws_futures_requests.py +0 -0
- {python_binance-1.0.26 → python_binance-1.0.28}/tests/test_cryptography.py +0 -0
- {python_binance-1.0.26 → python_binance-1.0.28}/tests/test_depth_cache.py +0 -0
- {python_binance-1.0.26 → python_binance-1.0.28}/tests/test_futures.py +0 -0
- {python_binance-1.0.26 → python_binance-1.0.28}/tests/test_get_order_book.py +0 -0
- {python_binance-1.0.26 → python_binance-1.0.28}/tests/test_headers.py +0 -0
- {python_binance-1.0.26 → python_binance-1.0.28}/tests/test_historical_klines.py +0 -0
- {python_binance-1.0.26 → python_binance-1.0.28}/tests/test_ids.py +0 -0
- {python_binance-1.0.26 → python_binance-1.0.28}/tests/test_order.py +0 -0
- {python_binance-1.0.26 → python_binance-1.0.28}/tests/test_ping.py +0 -0
- {python_binance-1.0.26 → python_binance-1.0.28}/tests/test_socket_manager.py +0 -0
- {python_binance-1.0.26 → python_binance-1.0.28}/tests/test_threaded_socket_manager.py +0 -0
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
Metadata-Version: 2.1
|
|
2
2
|
Name: python-binance
|
|
3
|
-
Version: 1.0.
|
|
3
|
+
Version: 1.0.28
|
|
4
4
|
Summary: Binance REST API python implementation
|
|
5
5
|
Home-page: https://github.com/sammchardy/python-binance
|
|
6
6
|
Author: Sam McHardy
|
|
@@ -31,7 +31,7 @@ Requires-Dist: websockets
|
|
|
31
31
|
Requires-Dist: pycryptodome
|
|
32
32
|
|
|
33
33
|
=================================
|
|
34
|
-
Welcome to python-binance v1.0.
|
|
34
|
+
Welcome to python-binance v1.0.28
|
|
35
35
|
=================================
|
|
36
36
|
|
|
37
37
|
.. image:: https://img.shields.io/pypi/v/python-binance.svg
|
|
@@ -4,7 +4,7 @@
|
|
|
4
4
|
|
|
5
5
|
"""
|
|
6
6
|
|
|
7
|
-
__version__ = "1.0.
|
|
7
|
+
__version__ = "1.0.28"
|
|
8
8
|
|
|
9
9
|
from binance.async_client import AsyncClient # noqa
|
|
10
10
|
from binance.client import Client # noqa
|
|
@@ -12,6 +12,8 @@ from binance.ws.depthcache import (
|
|
|
12
12
|
DepthCacheManager, # noqa
|
|
13
13
|
OptionsDepthCacheManager, # noqa
|
|
14
14
|
ThreadedDepthCacheManager, # noqa
|
|
15
|
+
FuturesDepthCacheManager, # noqa
|
|
16
|
+
OptionsDepthCacheManager, # noqa
|
|
15
17
|
)
|
|
16
18
|
from binance.ws.streams import (
|
|
17
19
|
BinanceSocketManager, # noqa
|
|
@@ -23,7 +25,7 @@ from binance.ws.keepalive_websocket import KeepAliveWebsocket # noqa
|
|
|
23
25
|
|
|
24
26
|
from binance.ws.reconnecting_websocket import ReconnectingWebsocket # noqa
|
|
25
27
|
|
|
26
|
-
from binance.ws.constants import *
|
|
28
|
+
from binance.ws.constants import * # noqa
|
|
27
29
|
|
|
28
30
|
from binance.exceptions import * # noqa
|
|
29
31
|
|