Skip to content

alimogh/py_bittrex_api

 
 

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

27 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

bittrex_api

PyPI - version PyPI - license PyPI - python version PyPI - downloads

GitHub - last commit GitHub - commit activity

GitHub - code size in bytes GitHub - repo size GitHub - lines of code

GitHub - license

Description

Python implementation of the V1, V2 and V3 Bittrex API. No affiliation to Bittrex.

Install

pip install bittrex_api # or pip3 install bittrex_api

Usage

from bittrex_api import Bittrex bittrex = Bittrex( api_key='', # YOUR API KEY secret_key='', # YOUR API SECRET max_request_try_count=3, # Max tries for a request to succeed sleep_time=2, # sleep seconds between failed requests debug_level=3 ) v3 = bittrex.v3 # or # from bittrex_api import * # v3 = BittrexV3( # api_key='', # YOUR API KEY # secret_key='', # YOUR API SECRET # max_request_try_count=3, # Max tries for a request to succeed # sleep_time=2, # sleep seconds between failed requests # debug_level=3, # reverse_market_names=True # ) # V3 Usage samples from kcu import kjson MARKET_NAME = 'BTC-XRP' kjson.print(v3.get_market(market=MARKET_NAME)) kjson.print(v3.get_market_summary(market=MARKET_NAME)) kjson.print(v3.get_orderbook(market=MARKET_NAME, depth=1))

Dependencies

kcu, requests

About

No description or website provided.

Topics

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages

  • Python 100.0%