Skip to content

Releases: bitvavo/python-bitvavo-api

v1.4.6

14 May 12:55
@NL1 NL1
27c0640

Choose a tag to compare

What's Changed

Full Changelog: v1.4.3...v1.4.6

v1.4.2

31 May 11:00

Choose a tag to compare

Fixes

  • Changes the configuration of the Python SDK to allow using a version range for the dependencies. This should prevent us from using code which contains a vulnerability.

v1.4.1

26 Feb 12:38

Choose a tag to compare

Update the date in the license file.

v1.4.0

19 Feb 09:28

Choose a tag to compare

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

v1.3.3

16 Jan 12:48

Choose a tag to compare

Add the contributing guide to this repository.

v1.3.2

03 Jan 16:32

Choose a tag to compare

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

17 Nov 14:21
5d676cf

Choose a tag to compare

In this release we have:

  • Improved the WebSocket implementation.
  • Updated the Readme.

Python Bitvavo API

07 Jul 14:38
f488776

Choose a tag to compare

Support HTTP2 Standards (Convert headers to lowercase)

Python Bitvavo API

30 Oct 13:23
252639a

Choose a tag to compare

  • Added account endpoint
  • Added example for stoploss

Python Bitvavo API

14 Aug 12:23

Choose a tag to compare

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.