binance-connector-python
binance-connector-python copied to clipboard
a simple connector to Binance Public API
Before submitting a new issue, please check if a similar issue has already been filed. trying to get the current positions am having within flexible earn am getting the error...
Hello everyone, I would like to know if it is possible to pull all the transaction history of an auto-invest plan ? The code uploaded [here](https://github.com/binance/binance-connector-python/blob/master/examples/spot/auto_invest/query_subscription_transaction_history.py) can pull the latest...
### Issue subject No Proper Websocket API and Websocket Stream API documentation. ### Expected behaviour They should be clearly explained. We are blind dating with the API ;). Reading the...
Hello, This is not a BUG but an improvement request so I don't know if I should make the request here? Currently when we place a LIMIT buy or sell...
There are many file conflics (same path) between this package and the binance-futures-connector-python package. Only one will be retained each if both packages were installed using pip. Is there any...
https://developers.binance.com/docs/binance-spot-api-docs/web-socket-api#general-api-information > A single connection to the API is only valid for 24 hours; expect to be disconnected after the 24-hour mark. I need to handle the 24H API disconnection...
API_KEY='./ssh_key/api_key.txt' PRIVATE_KEY_PATH='./ssh_key/Private_key.txt' with open(API_KEY, 'rb') as f: api_key = f.read() with open(PRIVATE_KEY_PATH, 'rb') as f: private_key = f.read() client = UMFutures(key=api_key, secret=private_key, base_url='https://testnet.binancefuture.com') Error: m = hmac.new(secret.encode("utf-8"), payload.encode("utf-8"), hashlib.sha256) AttributeError:...
### Issue subject The documentation gives the wrong path for the `import` WebSocket module: * https://binance-connector.readthedocs.io/en/latest/getting_started.html#websocket * https://github.com/search?q=repo%3Abinance%2Fbinance-connector-python+binance.websocket.spot.websocket_client&type=code ``` from binance.websocket.spot.websocket_client import SpotWebsocketClient ``` There is no `spot.websocket_client` and `SpotWebsocketClient`....