Metadata-Version: 2.1
Name: binance-dex
Version: 0.0.3
Summary: Python Library for Binance DEX, including API, Websocket, JSONRPC
Home-page: https://github.com/wally-yu/binance-dex
Author: Wally Yu
License: MIT License
Platform: UNKNOWN
Description-Content-Type: text/markdown
Requires-Dist: requests (==2.18.4)

## Binance DEX Python Package

## Introudction:

Ways to connect to Binance DEX are:
 - REST API
 - CLI
 - WebSocket
 - JSONRPC

This python package will provide all methods available as from binance official document except cli:
- [x] REST API
- [ ] CLI
- [x] WebSocket
- [x] JSONRPC

## Sample Usage:

```
from api.client import Client

# create API Client instance
api_client = Client()

# call corresponding methods
print(api_client.get_block_time())
```
Expected to get results as:

```
{'status': True, 'result': {'ap_time': '2019-03-06T04:43:48Z', 'block_time': '2019-03-06T04:43:47Z'}}
```
#### Note:
**This package development just getting started, feel free to join if you have interest**

