Skip to content

Commit bf66888

Browse files
author
Sam McHardy
committed
Update version to v0.4.0
1 parent 86c8906 commit bf66888

5 files changed

Lines changed: 27 additions & 4 deletions

File tree

PYPIREADME.rst

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
================================
2-
Welcome to python-binance v0.3.6
2+
Welcome to python-binance v0.4.0
33
================================
44

55
.. image:: https://img.shields.io/pypi/v/python-binance.svg
@@ -41,6 +41,7 @@ Features
4141
- Websocket handling
4242
- Symbol Depth Cache
4343
- Withdraw functionality
44+
- Deposit addresses
4445
- Order parameter validation based on Trade Rules
4546

4647
Quick Start
@@ -92,6 +93,9 @@ Quick Start
9293
# fetch list of withdrawals
9394
withdraws = client.get_withdraw_history()
9495
96+
# get a deposit address
97+
address = client.get_deposit_address('BTC)
98+
9599
# start trade websocket
96100
def process_message(msg):
97101
print("message type:" + msg[e])

README.rst

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
================================
2-
Welcome to python-binance v0.3.8
2+
Welcome to python-binance v0.4.0
33
================================
44

55
.. image:: https://img.shields.io/pypi/v/python-binance.svg
@@ -41,6 +41,7 @@ Features
4141
- Websocket handling
4242
- Symbol Depth Cache
4343
- Withdraw functionality
44+
- Deposit addresses
4445
- Order parameter validation based on Trade Rules
4546

4647
Quick Start
@@ -92,6 +93,9 @@ Quick Start
9293
# fetch list of withdrawals
9394
withdraws = client.get_withdraw_history()
9495
96+
# get a deposit address
97+
address = client.get_deposit_address('BTC)
98+
9599
# start trade websocket
96100
def process_message(msg):
97101
print("message type:" + msg[e])

docs/changelog.rst

Lines changed: 13 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,19 @@
11
Changelog
22
=========
33

4+
v0.4.0 - 2017-11-19
5+
^^^^^^^^^^^^^^^^^^^
6+
7+
**Added**
8+
9+
- Get deposit address endpoint
10+
- Upgraded withdraw endpoints to v3
11+
- New exchange info endpoint with rate limits and full symbol info
12+
13+
**Removed**
14+
15+
- Order validation to return at a later date
16+
417
v0.3.8 - 2017-11-17
518
^^^^^^^^^^^^^^^^^^^
619

docs/overview.rst

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -50,7 +50,9 @@ API Endpoints are rate limited by Binance at 20 requests per second, ask them if
5050
API Rate Limit
5151
--------------
5252

53-
Binance rate limits are:
53+
Check the `get_exchange_info() <binance.html#binance.client.Client.get_exchange_info>`_ call for up to date rate limits.
54+
55+
At the current time Binance rate limits are:
5456

5557
- 1200 requests per minute
5658
- 10 orders per second

setup.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33

44
setup(
55
name='python-binance',
6-
version='0.3.8',
6+
version='0.4.0',
77
packages=['binance'],
88
description='Binance REST API python implementation',
99
url='https://github.com/sammchardy/python-binance',

0 commit comments

Comments
 (0)