Skip to content

Latest commit

 

History

History
28 lines (19 loc) · 544 Bytes

README.md

File metadata and controls

28 lines (19 loc) · 544 Bytes

Upbitpy

Build Status

Upbit API for Python3

Install

$ pip3 install upbitpy

Usage

from upbitpy import Upbitpy

upbit = Upbitpy()
tickers = upbit.get_ticker(['KRW-BTC', 'KRW-EOS'])
for ticker in tickers:
    print('%s trade price : %d' % (ticker['market'], ticker['trade_price']))

Samples

samples/README.md

TC

Please refer test/test.py