Python
Timestamp for this request was 1000ms ahead of the server's time.
ndlessrain
2023. 2. 23. 17:11
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