pykrakenapi
pykrakenapi copied to clipboard
A python implementation of the Kraken API.
Apparently, kraken api has released a new version in which a new column has appeared, leading to api failure when setting [trades.columns](https://github.com/dominiktraxl/pykrakenapi/blob/1f0c54f07510bd9edc3d695231f8145f4d084fc7/pykrakenapi/pykrakenapi.py#L763). After adding a new column name, api works...
Currently all numeric values returned by the API, which the API returns as strings, are converted by this library into `float`s. This is handy for working with the API results...
With current pandas, there is a FutureWarning triggered by line 607 in ``pykrakenapi.py: ``` .../venv/lib/python3.8/site-packages/pykrakenapi/pykrakenapi.py:607: FutureWarning: In a future version, `df.iloc[:, i] = newvals` will attempt to set the values...