Releases: bitvavo/python-bitvavo-api
Releases · bitvavo/python-bitvavo-api
v1.4.2
v1.4.1
Update the date in the license file.
v1.4.0
Features
- Adds a new method to get fees via a new endpoint
Call the following method to access the fees:
from python_bitvavo_api.bitvavo import Bitvavo
bitvavo = Bitvavo('<APIKEY>', '<APISECRET>')
response = bitvavo.fees()
You can also pass a market to get fees for that specific market:
from python_bitvavo_api.bitvavo import Bitvavo
bitvavo = Bitvavo('<APIKEY>', '<APISECRET>')
response = bitvavo.fees(market = 'BTC-EUR')
Fixes
- Fixes and issue with waiting for the WebSocket connection to be authenticated
v1.3.3
Add the contributing guide to this repository.
v1.3.2
Features
- Allows setting a
'TIMEOUT'
option which is applied to all outgoing REST requests - Allows passing options as arguments to the candles endpoint
v1.2.3
In this release we have:
- Improved the WebSocket implementation.
- Updated the Readme.
Python Bitvavo API
Support HTTP2 Standards (Convert headers to lowercase)
Python Bitvavo API
- Added account endpoint
- Added example for stoploss
Python Bitvavo API
Implemented the following changes to the API
- Added bestBidSize and bestAskSize to tickerBook and websocket ticker.
- Added bestBid, bestBidSize, bestAsk, bestAskSize and timestamp to ticker24h.
- Added tradeIdFrom/tradeIdTo and orderIdFrom/orderIdTo to limit returned trades/orders (deprecating tradeId/orderId in those searches).
- Added ticker24h websocket stream.
Python Bitvavo API
The Python Bitvavo API wrapper.