Versions
OS: any
Python: any
krakenex: 2.2.0
What are you trying to achieve?
import krakenex
k=krakenex.API()
k.query_public("Ticker", {"pair":"XBTUSD"}
What do you expect to happen?
market data for requested pair returned
What happens instead?
market data for all pairs returned
params for GET being sent in session.get data are ignored by Kraken - need to be urlecoded
k.query_public("Ticker?pair=XBTUSD"}
works^