python-bittrex icon indicating copy to clipboard operation
python-bittrex copied to clipboard

Update please examples on front page

Open yuchdev opened this issue 7 years ago • 0 comments

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):

yuchdev avatar Mar 29 '18 10:03 yuchdev