/BittrexPython

Python module to handle Bittrex RESTful API

Primary LanguagePythonMIT LicenseMIT

Bittrex RESTful API - Python 3 module

API wrapper for Bittrex API v1.1. Software under MIT license. Full API documentation available here:

https://bittrex.com/home/api

Basic use

Import class from module:

from bittrex import Bittrex

Create instance:

bittrex = Bittrex('<api-key>', '<api-secret>')

Methods' names

Methods name convention is based on API documentation with underscore dividing each word. Example:

/public/getmarketsummary?market=btc-ltc --> bittrex.get_market_summary('btc-ltc')