반응형
import ntplib
from time import ctime
time_server = 'time.windows.com' # URL 또는 IP 지정 가능
ntp_client = ntplib.NTPClient()
response = ntp_client.request(host=time_server, version=3)
print(response)
print(type(response))
print(response.recv_timestamp)
print(type(response.recv_timestamp))
print(ctime(response.tx_time).)
print(f"NTP 서버와 Local Time의 오차는 {response.offset:.2f}초 입니다.")
참고 사이트 - https://pypi.org/project/ntplib/
NTP서버에서 시간을 가져오고 출력하는 python3 코드
반응형
'프로그래머의 지혜 > Python_파이썬' 카테고리의 다른 글
[재테크 파이썬] 금융감독원 전자공시 분석기 만들기 - 0 (0) | 2023.04.29 |
---|---|
python으로 구현한 자동캡처 프로그램 fit. PySide6 (0) | 2023.04.28 |
파이썬(python)으로 이미지파일 PDF로 변환 (0) | 2023.04.17 |
파이썬 프로그래밍 도움글 (0) | 2019.01.17 |
python shutil.rmtree() 함수를 이용한 디렉토리/폴더삭제 참고글 (0) | 2019.01.11 |