728x90

msg=upbit.buy_limit_order("KRW-XRP", 500, 20)

print(msg)

{'error': {'message': '주문가능한 금액(KRW)이 부족합니다.', 'name': 'insufficient_funds_bid'}}

2중 dict 구조이므로 msg.get('error').get('message')로 str을 꺼낼 수 있음

print(msg['error'])

{'message': '주문가능한 금액(KRW)이 부족합니다.', 'name': 'insufficient_funds_bid'}

'error' in msg

하면 True 리턴.

728x90

'Python' 카테고리의 다른 글

python 암호화폐 자동매매 참고 사이트  (0) 2021.01.26
python dictionary to string  (0) 2021.01.25
python cursor execute parameters  (0) 2021.01.25
pymysql datetime 현재시간  (0) 2021.01.25
'Connection' object has no attribute 'cursors'  (0) 2021.01.25

+ Recent posts