You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Basic example you provided is misleading (and does not work with TypeError: unsupported operand type(s) for /: 'float' and 'str')
my_bittrex = Bittrex(None, None, api_version=API_V2_0) # or defaulting to v1.1 as Bittrex(None, None)
my_bittrex.get_markets()
It looks like Bittrex.__init__ has 3 first params key, secret, and version. However, init has more params: def __init__(self, api_key, api_secret, calls_per_second=1, dispatch=using_requests, api_version=API_V1_1):
The text was updated successfully, but these errors were encountered:
Basic example you provided is misleading (and does not work with TypeError: unsupported operand type(s) for /: 'float' and 'str')
It looks like Bittrex.__init__ has 3 first params key, secret, and version. However, init has more params:
def __init__(self, api_key, api_secret, calls_per_second=1, dispatch=using_requests, api_version=API_V1_1):
The text was updated successfully, but these errors were encountered: