We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
OS: w10 Python: 3.6 krakenex: 2.1.0
Getting balance of an asset with pykrakenapi
# code sample import krakenex from pykrakenapi import KrakenAPI api = krakenex.API() api.load_key('key.key') k = KrakenAPI(api) print(k.get_account_balance()[data['base']])
It prints a number
I get the error that my API Key is invalid
# error message attempt: 000 | ['EAPI:Invalid key'] attempt: 001 | ['EAPI:Invalid key'] attempt: 002 | ['EAPI:Invalid key']
etc. It's a completely new API Key 2FA for it is disabled
Edit: When I try to do it with query_private I get an invalid nonce error. I also get the invalid nonce error with pykrakenapi
import krakenex k = krakenex.API() k.load_key('key.key') data = k.query_private('Balance') print(data)
#output {'error': ['EAPI:Invalid nonce']}
The text was updated successfully, but these errors were encountered:
solved with fix in #75
Sorry, something went wrong.
No branches or pull requests
Versions
What are you trying to achieve?
Getting balance of an asset with pykrakenapi
What do you expect to happen?
It prints a number
What happens instead?
I get the error that my API Key is invalid
etc.
It's a completely new API Key 2FA for it is disabled
Edit: When I try to do it with query_private I get an invalid nonce error. I also get the invalid nonce error with pykrakenapi
The text was updated successfully, but these errors were encountered: