avatar of RunningBits RunningBits
집중하다 사신
6
집중하다
0
수행원

Python은 Binance 현물 시장 가격 데이터를 가져오고 비어 있는 값을 반환합니다.

만든 날짜: 2024-05-04 14:59:36, 업데이트 날짜:
comments   3
hits   689

현금 시장의 가격 데이터를 얻습니다.

def get_binance_spot_market_data(): url = “https://api.binance.com/api/v1/ticker/24hr” response = requests.get(url) if response.status_code == 200: return response.json() else: return None

이 코드가 실행된 후 로그는 왜 텅 비었을까?