pycrybittrex

bittrex python client


Keywords
python, bittrex
License
Apache-2.0
Install
pip install pycrybittrex==0.4.0

Documentation

How to install


pip3 install pycrybittrex

Usage example:

from pycrybittrex import bittrex, ApiVersion
client = bittrex.create_client(ApiVersion.V1_1, api_key='<api_key>', api_secret='<api_secret>')
order_history = client.get_order_history("ETH-XRP")

To setup development environment using conda:

conda create --name pycrybittrex --file requirements.txt