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() 호출

단, 프로세스가 관리자 권한으로 실행중이어야 함.

참고 : https://jsp-dev.tistory.com/322

728x90

+ Recent posts