-
Notifications
You must be signed in to change notification settings - Fork 9
/
Copy pathdemo.py
31 lines (25 loc) · 886 Bytes
/
demo.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
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))