반응형
Python에서 시스템 날짜, 시간, 시간대를 어떻게 변경할 수 있습니까? 이에 사용할 수있는 모듈이 있습니까?
해결 방법
import sys
import datetime
time_tuple = ( 2012, # Year
9, # Month
6, # Day
0, # Hour
38, # Minute
0, # Second
0, # Millisecond
)
def _win_set_time(time_tuple):
import pywin32
# http://timgolden.me.uk/pywin32-docs/win32api__SetSystemTime_meth.html
# pywin32.SetSystemTime(year, month , dayOfWeek , day , hour , minute , second , millseconds )
dayOfWeek = datetime.datetime(time_tuple).isocalendar()[2]
pywin32.SetSystemTime( time_tuple[:2] + (dayOfWeek,) + time_tuple[2:])
def _linux_set_time(time_tuple):
import ctypes
import ctypes.util
import time
# /usr/include/linux/time.h:
#
# define CLOCK_REALTIME 0
CLOCK_REALTIME = 0
# /usr/include/time.h
#
# struct timespec
# {
# __time_t tv_sec; /* Seconds. */
# long int tv_nsec; /* Nanoseconds. */
# };
class timespec(ctypes.Structure):
_fields_ = [("tv_sec", ctypes.c_long),
("tv_nsec", ctypes.c_long)]
librt = ctypes.CDLL(ctypes.util.find_library("rt"))
ts = timespec()
ts.tv_sec = int( time.mktime( datetime.datetime( *time_tuple[:6]).timetuple() ) )
ts.tv_nsec = time_tuple[6] * 1000000 # Millisecond to nanosecond
# http://linux.die.net/man/3/clock_settime
librt.clock_settime(CLOCK_REALTIME, ctypes.byref(ts))
if sys.platform=='linux2':
_linux_set_time(time_tuple)
elif sys.platform=='win32':
_win_set_time(time_tuple)
저는 윈도우 머신이 없어서 윈도우에서 테스트하지 않았습니다 ...하지만 당신은 아이디어를 얻었습니다.
참조 페이지 https://stackoverflow.com/questions/12081310
반응형
'파이썬' 카테고리의 다른 글
파이썬 유니 코드 문자열을 Python의 문자열로 변환 (추가 기호 포함) (0) | 2021.02.09 |
---|---|
파이썬 Jinja 템플릿-부동 소수점을 쉼표로 구분 된 통화로 포맷 (0) | 2021.02.09 |
파이썬 changing default x range in histogram matplotlib (0) | 2021.02.09 |
파이썬 Indentation of IF-ELSE block in python (0) | 2021.02.09 |
파이썬 python SimpleHTTPServer를 localhost에서만 실행할 수 있습니까? (0) | 2021.02.09 |
댓글