반응형
import requests
url = "https://api.upbit.com/v1/market/all"
resp = requests.get(url)
data = resp.json()
krw_tickers = []
for coin in data:
ticker = coin['market']
if ticker.startswith("KRW"):
krw_tickers.append(ticker)
print(krw_tickers)
반응형
'IT News' 카테고리의 다른 글
win32gui에러해결 (0) | 2021.11.15 |
---|---|
가상환경 설치, 제거 (0) | 2021.11.11 |
내 컴퓨터 ip 확인 방법 (0) | 2021.10.30 |
python 추가설치 (0) | 2021.10.30 |
가상환경 연결 python (0) | 2021.10.30 |
댓글