Python Upbit API Wrapper
Project description
Python Upbit API
💙 Python Upbit API는 간단하고 명료한 Upbit API Wrapper 입니다. 👍
Installation
pip 명령어로 간단하게 설치할 수 있습니다.
pip install python-upbit-api
Quick Start
인증 없이 사용하기
각종 시세 정보를 얻기 위한 QUOTATION API만 사용한다면 인증 정보 없이 초기화 후 사용합니다.
⚠️ EXCHANGE API를 사용하면 upbit.exceptions.ApiKeyError
예외가 발생합니다.
# example.py
from upbit import Upbit
upbit = Upbit()
res = upbit.get_markets()
data = res.json()
upbit.get_accounts() # upbit.exceptions.ApiKeyError 발생
인증 사용하기
인증이 필요한 EXCHANGE API를 사용해야 한다면 인증 정보를 초기화시 등록 후 사용합니다.
🙆🏻♀️ QUOTATION API도 사용할 수 있습니다.
.env
환경설정 파일에 발급 받은 인증 정보를 설정합니다.
UPBIT_OPEN_API_ACCESS_KEY=xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx
UPBIT_OPEN_API_SECRET_KEY=xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx
# example.py
import os
from upbit import Upbit
access_key = os.environ.get('UPBIT_OPEN_API_ACCESS_KEY')
secret_key = os.environ.get('UPBIT_OPEN_API_SECRET_KEY')
upbit = Upbit(access_key, secret_key)
res = upbit.get_accounts()
data = res.json()
Features
Requests 사용
Requests 라이브러리를 이용해 모든 업비트 REST API를 Upbit
클래스의 메소드로 제공합니다.
-
requests.Response
객체를 그대로 반환합니다.# example.py from upbit import Upbit upbit = Upbit() res = upbit.get_markets() data = res.json() status_code = res.status_code
-
requests.adapters.HTTPAdapter
클래스를 사용하여 재시도 횟수 등을 설정할 수 있습니다.# example.py from upbit import Upbit import requests adapter = requests.adapters.HTTPAdapter(max_retries=3) upbit = Upbit(http_adapter=adapter)
-
requests.Session.request
요청 파라미터timeout
값을 설정할 수 있습니다.# example.py from upbit import Upbit upbit = Upbit(timeout=(10, 5)) # 모든 요청에 설정할 timeout res = upbit.get_markets(timeout=10) # 이 요청에만 설정할 timeout
예외 클래스 제공
모든 API 요청에서 발생한 requests.exceptions.HTTPError
예외는 이 예외를 상속한 upbit.exceptions.UpbitHTTPError
예외로 발생합니다.
아래 Upbit 공식 문서에 공개한 에러 유형에 맞는 예외 쌍을 가집니다.
# example.py
from upbit import Upbit, TooManyRequests, UpbitClientError, UpbitServerError
upbit = Upbit()
try:
res = upbit.get_markets()
except TooManyRequests as e:
status_code = e.response.status_code # 423
# ...예외 처리 코드
except UpbitClientError as e:
res = e.response
# ...예외 처리 코드
except UpbitServerError as e:
res = e.response
# ...예외 처리 코드
잔여 요청 수 확인
업비트 API Remaining-Req
응답 헤더에 담긴 잔여 요청 수를 upbit.models.RemainingReq
객체로 제공되어 정보에 쉽게 접근 할 수 있습니다.
요청 그룹별 최신 값을 프로퍼티에 저장하며 get_remaining_reqs()
함수를 호출하면 그룹의 최신 잔여 요청 수 객체를 확인 할 수 있습니다.
참고: Exchange API 잔여 요청 수 확인 방법
# example.py
from upbit import Upbit
from upbit.models import RemainingReq
upbit = Upbit()
res = upbit.get_candles_day('KRW-BTC')
rr: RemainingReq = upbit.get_remaining_reqs('candles')
rr.minute
rr.updated
# 응답 헤더도 그대로 사용 가능
rr_text = res.headers['Remaining-Req'] # 'group=candles; min=59; sec=4'
요청 파라미터 모델 제공
Upbit API 요청 파라미터에 사용할 다양한 데이터 모델을 타입으로 제공합니다.
# example.py
from upbit.models import OrderSide
# ...
# Type Hint
order_side: OrderSide = 'bid'
res = upbit.create_order(market='KRW-BTC', side=order_side, ord_type='limit', price='100', volume='0.01')
Docstring & Type Hint
잘 작성한 Docstring 내용과 타입으로 IDE에서 사용하기 편리합니다. 📝💡
WebSocket
아직 지원하지 않습니다. 참고 이슈
Changelog
최신 변경 사항은 아래에서 확인할 수 있습니다.
Project details
Release history Release notifications | RSS feed
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
Built Distribution
File details
Details for the file python-upbit-api-1.0.1.tar.gz
.
File metadata
- Download URL: python-upbit-api-1.0.1.tar.gz
- Upload date:
- Size: 17.6 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/4.0.2 CPython/3.8.0
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | ae3d94c4b167d6825be91a4500b4180ecb2d9988e1c5954c25c7160e475f9569 |
|
MD5 | f8ca9061c5ff4ba939d74026ddb0ca4c |
|
BLAKE2b-256 | 5364d6360247cb97bbef24b30a28e9dfe5ed5b0985b8a01d7e5a48d5735afab2 |
File details
Details for the file python_upbit_api-1.0.1-py3-none-any.whl
.
File metadata
- Download URL: python_upbit_api-1.0.1-py3-none-any.whl
- Upload date:
- Size: 18.9 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/4.0.2 CPython/3.8.0
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | f295a6702c479ec387e03b7c129ca1de833b383ff7ae3637f64f5d545a146731 |
|
MD5 | c917df7e97c440b2bf4f5f1cfcfcddb6 |
|
BLAKE2b-256 | bc7b2dee6214b0e9bb5e048ae6163413ed2b2d4c376ccd975936669480668824 |