반응형
Notice
Recent Posts
Recent Comments
Link
일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
1 | ||||||
2 | 3 | 4 | 5 | 6 | 7 | 8 |
9 | 10 | 11 | 12 | 13 | 14 | 15 |
16 | 17 | 18 | 19 | 20 | 21 | 22 |
23 | 24 | 25 | 26 | 27 | 28 | 29 |
30 | 31 |
Tags
- Github
- Apache
- PySpark
- PANDAS
- Redshift
- c#
- list
- 파이썬
- Python
- Kotlin
- google apps script
- Google Excel
- django
- Google Spreadsheet
- string
- numpy
- gas
- Tkinter
- dataframe
- SQL
- GIT
- PostgreSQL
- Mac
- matplotlib
- Excel
- hive
- math
- Java
- array
Archives
- Today
- Total
목록Upbit 자산 (1)
달나라 노트
Python Upbit : get_balances, get_balance (Upbit 잔고 조회, Upbit 자산 조회)
pyupbit를 이용할 때 나의 자산을 조회하려면 get_balances method를 이용합니다. 자산 조회부터는 민감한 정보이므로 정상적인 기능을 사용하기 위해선 access key, secret key가 필요합니다. access key, secret key 발급을 위해선 아래 링크를 참고합시다. access key, secret key 발급 = https://cosmosproject.tistory.com/491 import pyupbit as ub access_key = 'access_key' secret_key = 'secret_key' upbit = ub.Upbit(access=access_key, secret=secret_key) my_balance = upbit.get_balances() p..
Python/Python ETC
2022. 2. 27. 01:02