Skip to content

hatzhang/pybittrex

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

22 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

PyBittrex

Compatibility

Compatible with Python 2 and 3.

Prerequisites

  1. Register for a Bittrex account
  2. Enable Two Factor authentication
  3. Generate an API Key and Secret

Installation

pip install pybittrex

Usage

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'])

License

PyBittrex is licensed under the MIT license.

About

Bittrex API Python library

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages