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.
Files changed (61) hide show
  1. {python_binance-1.0.26/python_binance.egg-info → python_binance-1.0.28}/PKG-INFO +2 -2
  2. {python_binance-1.0.26 → python_binance-1.0.28}/README.rst +1 -1
  3. {python_binance-1.0.26 → python_binance-1.0.28}/binance/__init__.py +4 -2
  4. {python_binance-1.0.26 → python_binance-1.0.28}/binance/async_client.py +1472 -2
  5. {python_binance-1.0.26 → python_binance-1.0.28}/binance/base_client.py +14 -0
  6. {python_binance-1.0.26 → python_binance-1.0.28}/binance/client.py +5785 -491
  7. {python_binance-1.0.26 → python_binance-1.0.28}/binance/ws/keepalive_websocket.py +21 -9
  8. {python_binance-1.0.26 → python_binance-1.0.28}/binance/ws/reconnecting_websocket.py +4 -5
  9. {python_binance-1.0.26 → python_binance-1.0.28}/binance/ws/streams.py +174 -63
  10. {python_binance-1.0.26 → python_binance-1.0.28}/binance/ws/threaded_stream.py +15 -5
  11. {python_binance-1.0.26 → python_binance-1.0.28}/binance/ws/websocket_api.py +6 -5
  12. {python_binance-1.0.26 → python_binance-1.0.28/python_binance.egg-info}/PKG-INFO +2 -2
  13. {python_binance-1.0.26 → python_binance-1.0.28}/python_binance.egg-info/SOURCES.txt +3 -0
  14. {python_binance-1.0.26 → python_binance-1.0.28}/tests/test_async_client.py +27 -0
  15. {python_binance-1.0.26 → python_binance-1.0.28}/tests/test_async_client_futures.py +29 -8
  16. {python_binance-1.0.26 → python_binance-1.0.28}/tests/test_async_client_ws_futures_requests.py +38 -1
  17. {python_binance-1.0.26 → python_binance-1.0.28}/tests/test_client.py +32 -0
  18. {python_binance-1.0.26 → python_binance-1.0.28}/tests/test_client_futures.py +21 -8
  19. {python_binance-1.0.26 → python_binance-1.0.28}/tests/test_client_ws_api.py +30 -0
  20. python_binance-1.0.28/tests/test_init.py +55 -0
  21. {python_binance-1.0.26 → python_binance-1.0.28}/tests/test_reconnecting_websocket.py +7 -1
  22. python_binance-1.0.28/tests/test_streams.py +91 -0
  23. python_binance-1.0.28/tests/test_streams_options.py +100 -0
  24. python_binance-1.0.28/tests/test_threaded_stream.py +193 -0
  25. {python_binance-1.0.26 → python_binance-1.0.28}/tests/test_ws_api.py +76 -8
  26. python_binance-1.0.26/tests/test_streams.py +0 -15
  27. {python_binance-1.0.26 → python_binance-1.0.28}/LICENSE +0 -0
  28. {python_binance-1.0.26 → python_binance-1.0.28}/binance/enums.py +0 -0
  29. {python_binance-1.0.26 → python_binance-1.0.28}/binance/exceptions.py +0 -0
  30. {python_binance-1.0.26 → python_binance-1.0.28}/binance/helpers.py +0 -0
  31. {python_binance-1.0.26 → python_binance-1.0.28}/binance/ws/__init__.py +0 -0
  32. {python_binance-1.0.26 → python_binance-1.0.28}/binance/ws/constants.py +0 -0
  33. {python_binance-1.0.26 → python_binance-1.0.28}/binance/ws/depthcache.py +0 -0
  34. {python_binance-1.0.26 → python_binance-1.0.28}/pyproject.toml +0 -0
  35. {python_binance-1.0.26 → python_binance-1.0.28}/python_binance.egg-info/dependency_links.txt +0 -0
  36. {python_binance-1.0.26 → python_binance-1.0.28}/python_binance.egg-info/requires.txt +0 -0
  37. {python_binance-1.0.26 → python_binance-1.0.28}/python_binance.egg-info/top_level.txt +0 -0
  38. {python_binance-1.0.26 → python_binance-1.0.28}/setup.cfg +0 -0
  39. {python_binance-1.0.26 → python_binance-1.0.28}/setup.py +0 -0
  40. {python_binance-1.0.26 → python_binance-1.0.28}/tests/test_api_request.py +0 -0
  41. {python_binance-1.0.26 → python_binance-1.0.28}/tests/test_async_client_gift_card copy.py +0 -0
  42. {python_binance-1.0.26 → python_binance-1.0.28}/tests/test_async_client_margin.py +0 -0
  43. {python_binance-1.0.26 → python_binance-1.0.28}/tests/test_async_client_options.py +0 -0
  44. {python_binance-1.0.26 → python_binance-1.0.28}/tests/test_async_client_portfolio.py +0 -0
  45. {python_binance-1.0.26 → python_binance-1.0.28}/tests/test_async_client_ws_api.py +0 -0
  46. {python_binance-1.0.26 → python_binance-1.0.28}/tests/test_client_gift_card.py +0 -0
  47. {python_binance-1.0.26 → python_binance-1.0.28}/tests/test_client_margin.py +0 -0
  48. {python_binance-1.0.26 → python_binance-1.0.28}/tests/test_client_options.py +0 -0
  49. {python_binance-1.0.26 → python_binance-1.0.28}/tests/test_client_portfolio.py +0 -0
  50. {python_binance-1.0.26 → python_binance-1.0.28}/tests/test_client_ws_futures_requests.py +0 -0
  51. {python_binance-1.0.26 → python_binance-1.0.28}/tests/test_cryptography.py +0 -0
  52. {python_binance-1.0.26 → python_binance-1.0.28}/tests/test_depth_cache.py +0 -0
  53. {python_binance-1.0.26 → python_binance-1.0.28}/tests/test_futures.py +0 -0
  54. {python_binance-1.0.26 → python_binance-1.0.28}/tests/test_get_order_book.py +0 -0
  55. {python_binance-1.0.26 → python_binance-1.0.28}/tests/test_headers.py +0 -0
  56. {python_binance-1.0.26 → python_binance-1.0.28}/tests/test_historical_klines.py +0 -0
  57. {python_binance-1.0.26 → python_binance-1.0.28}/tests/test_ids.py +0 -0
  58. {python_binance-1.0.26 → python_binance-1.0.28}/tests/test_order.py +0 -0
  59. {python_binance-1.0.26 → python_binance-1.0.28}/tests/test_ping.py +0 -0
  60. {python_binance-1.0.26 → python_binance-1.0.28}/tests/test_socket_manager.py +0 -0
  61. {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.26
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.26
34
+ Welcome to python-binance v1.0.28
35
35
  =================================
36
36
 
37
37
  .. image:: https://img.shields.io/pypi/v/python-binance.svg
@@ -1,5 +1,5 @@
1
1
  =================================
2
- Welcome to python-binance v1.0.26
2
+ Welcome to python-binance v1.0.28
3
3
  =================================
4
4
 
5
5
  .. image:: https://img.shields.io/pypi/v/python-binance.svg
@@ -4,7 +4,7 @@
4
4
 
5
5
  """
6
6
 
7
- __version__ = "1.0.26"
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 * # noqa
28
+ from binance.ws.constants import * # noqa
27
29
 
28
30
  from binance.exceptions import * # noqa
29
31