728x90
import os
def resync_clock():
os.system('net stop w32time')
os.system('w32tm /unregister')
os.system('w32tm /register')
os.system('net start w32time')
os.system('w32tm /resync')
하고 거래소 호출하기 전 resync_clock() 호출
단, 프로세스가 관리자 권한으로 실행중이어야 함.
728x90
'Python' 카테고리의 다른 글
챗GPT ChatGPT api 한글 token 계산 카운트 (0) | 2023.03.15 |
---|---|
chatGPT openai API 사용하기_파이썬 (0) | 2023.03.03 |
바이낸스 usd-m 실시간 funding rate 조회 (0) | 2023.02.21 |
바이낸스 usd-m funding rate 조회 사이트 (0) | 2023.02.21 |
jupyter notebook 팁 (0) | 2023.02.12 |