Skip to content

v1.4.0

Compare
Choose a tag to compare
@github-actions github-actions released this 19 Feb 09:28
· 7 commits to master since this release

Features

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