bittrex

Unofficial Python bindings for the Bittrex API


Keywords
bittrex, bitcoin, exchange
License
MIT
Install
pip install bittrex==0.1.4

Documentation

python-bittrex

These are Python bindings for the official Bittrex API.

Note: I am not associated with Bitttrex and this is an unofficial API wrapper.

Use at your own risk.

Tips are appreciated:

  • BTC: 1Lc5N89huRT4aBxahNEMkCzVx7DUDAgem2
  • LTC: LQJ8sjD7YZ7YgWajLtaYwn5xbUahFLsgFo
  • DOGE: DQtoZeA4y5y8ZN9Hezw7sy9GQkGCRjzyK7

Installation

To install, use pip with setuptools installed: pip install bittrex.

Alternatively, you can clone the GitHub repository:

git clone https://github.com/panchr/python-bittrex.git
cd python-bittrex
python setup.py install

Or, as a single line that you can copy to install: git clone https://github.com/panchr/python-bittrex.git && cd python-bittrex && python setup.py install.

Testing

In order to run the integration tests, a file called "secrets.json" must be added to the test folder. Structure it as follows, adding your API keys:

{
  "key": "mykey",
  "secret": "mysecret"
}