python wrapper for korea broker's REST API services
Project description
모히토 (Mojito)
대한민국 증권사의 Rest API 기반의 Open API에 대한 통합 파이썬 레퍼 모듈입니다. 통합 모듈이라 칵테일 이름인 모히토를 프로젝트명으로 사용하고 있으며, 돈 벌어서 몰디브가서 모히토 한 잔 하자는 의미도 있습니다.
설치
$ pip install mojito2
지원 API
| 카테고리 | 기능 | 함수 |
|---|---|---|
| OAuth 인증 | Hasheky | issue_hashkey() |
| OAuth 인증 | 접근토근발급(P) | issue_access_token() |
| OAuth 인증 | 접근토근폐기(P) | 미지원 |
| 국내주식주문 | 주식주문(현금) | |
| 국내주식주문 | 주식잔고조회 | fetch_balance() |
사용법
한국투자증권
https://wikidocs.net/book/7845
현재가 조회
import mojito
import pprint
key = "발급받은 API KEY"
secret = "발급받은 API SECRET"
acc_no = "12345678-01"
broker = mojito.KoreaInvestment(api_key=key, api_secret=secret, acc_no=acc_no)
resp = broker.fetch_price("005930")
pprint.pprint(resp)
일봉 데이터 조회
import mojito
import pprint
key = "발급받은 API KEY"
secret = "발급받은 API SECRET"
acc_no = "12345678-01"
broker = mojito.KoreaInvestment(api_key=key, api_secret=secret, acc_no=acc_no)
resp = broker.fetch_daily_price("005930")
pprint.pprint(resp)
잔고 조회
resp = broker.fetch_balance()
pprint.pprint(resp)
주문
resp = broker.create_market_buy_order("005930", 10) # 삼성전자, 10주, 시장가
pprint.pprint(resp)
{'rt_cd': '0',
'msg_cd': 'APBK0013',
'msg1': '주문 전송 완료 되었습니다.',
'output': {'KRX_FWDG_ORD_ORGNO': '91252',
'ODNO': '0000117057',
'ORD_TMD': '121052'}}
주문 취소
resp = broker.cancel_order("91252", "0000117057", "00", 60000, 5, "Y") # KRX_FWDG_ORD_ORGNO, ODNO, 지정가 주문, 가격, 수량, 모두
print(resp)
미국주식 주문
broker = KoreaInvestment(key, secret, acc_no=acc_no, exchange="NASD")
resp = broker.create_limit_buy_order("TQQQ", 35, 1)
print(resp)
웹소켓
import pprint
import mojito
with open("../../koreainvestment.key", encoding="utf-8") as f:
lines = f.readlines()
key = lines[0].strip()
secret = lines[1].strip()
if __name__ == "__main__":
broker_ws = mojito.KoreaInvestmentWS(key, secret, ["H0STCNT0", "H0STASP0"], ["005930", "000660"], user_id="idjhh82")
broker_ws.start()
while True:
data_ = broker_ws.get()
if data_[0] == '체결':
print(data_[1])
elif data_[0] == '호가':
print(data_[1])
elif data_[0] == '체잔':
print(data_[1])
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
mojito2-0.1.6.tar.gz
(15.4 kB
view details)
Built Distribution
Filter files by name, interpreter, ABI, and platform.
If you're not sure about the file name format, learn more about wheel file names.
Copy a direct link to the current filters
mojito2-0.1.6-py3-none-any.whl
(14.9 kB
view details)
File details
Details for the file mojito2-0.1.6.tar.gz.
File metadata
- Download URL: mojito2-0.1.6.tar.gz
- Upload date:
- Size: 15.4 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/4.0.1 CPython/3.9.13
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
4de27165a515054781ae990a4321e403d0ca97d1564826181790fababe062840
|
|
| MD5 |
84171c3979a768a67236750e6eaa7e82
|
|
| BLAKE2b-256 |
18a7a2008de9074637f8a29809c7561dbb47418baf10bbdefd6dadcfddf6da19
|
File details
Details for the file mojito2-0.1.6-py3-none-any.whl.
File metadata
- Download URL: mojito2-0.1.6-py3-none-any.whl
- Upload date:
- Size: 14.9 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/4.0.1 CPython/3.9.13
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
ed2af4a80cdd7d667693c0d7b301ba0017624613cefb9dfa635aca3d959397ad
|
|
| MD5 |
e03754c320bcbf402412a5be214409a6
|
|
| BLAKE2b-256 |
e151e1f43cd5d3d411b16212da0d27f10e5531d2ffac18526073f2e3d6faca2c
|