Compatible with Python 2 and 3.
- Register for a Bittrex account
- Enable Two Factor authentication
- Generate an API Key and Secret
pip install pybittrex
Everything is handled through a client object. Instantiate it using your API key and API secret:
from pybittrex.client import Client
c = Client(api_key='abc', api_secret='123')
The library returns a Requests object, so you can access all the parts of the returned data as you would if you were working with it natively:
markets = c.get_markets().json()['result']
for i in markets:
print(i['MarketName'])
PyBittrex is licensed under the MIT license.