Quickstart

업비트 거래소 API를 이용한 파이썬 라이브러리입니다.

Install

pip install pyupbit

현재가

import pyupbit

price = pyupbit.get_current_price("KRW-BTC")
print(price)

티커조회

import pyupbit

tickers = pyupbit.get_tickers()
print(tickers)
print(type(tickers))