blob: 48d28199348c5fdadf9727eda8cc40e462349cfa (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
|
#!/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)
|