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