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
from bittrex import * my_bittrex = Bittrex("Api_Key", "Sec_Key", api_version=API_V2_0) print(my_bittrex.get_balance('ETH'))
{'success': False, 'message': 'NO_API_RESPONSE', 'result': None}
Also with API 1_1
The text was updated successfully, but these errors were encountered:
from bittrex import * my_bittrex = Bittrex(None, None, api_version=API_V1_1) print(my_bittrex.get_markets())
Sorry, something went wrong.
You need to change the "Api_Key" and "Sec_Key" to a valid one from your Bittrex account
No branches or pull requests
from bittrex import *
my_bittrex = Bittrex("Api_Key", "Sec_Key", api_version=API_V2_0)
print(my_bittrex.get_balance('ETH'))
{'success': False, 'message': 'NO_API_RESPONSE', 'result': None}
Also with API 1_1
The text was updated successfully, but these errors were encountered: