#!/usr/bin/env python #-*- coding utf-8 -*- import socket import struct import time niz=input("Vnesi IP ali ime strežnika:") s = socket.socket( socket.AF_Inet, socket.SOCK_STREAm) s.connect((niz,37)) podatek = s.recv(4) stevilka = struct.unpack("!I", podatek) st= stevilka[0]-220898800 date = time.localtime(st) print((time.strftime('%Y-%m-%d %H:%M:%S'), date)) s.send(date)