Para que los post salgan sin fechas, vaya.
Muchísimas gracias.
Lo primero, no te apures, es muy fácil, solo sigue estos pasos:
Espero haberte ayudado
Utiliza el siguiente código:
import socket
import struct, time
PORT = 37
reference time (in seconds since 1900-01-01 00:00:00)
TIME1970 = 2208988800L # 1970-01-01 00:00:00
s = socket.socket(socket.AF_INET, socket.SOCK_STREAM)
s.connect((HOST, PORT))
read 4 bytes, and convert to time value
t = s.recv(4)
t = struct.unpack("!I", t)[0]
t = int(t - TIME1970)
s.close()
print "server time is", time.ctime(t)
print "local clock is", int(time.time()) - t, "seconds off"
server time is Sat Oct 09 16:42:36 1999
local clock is 8 seconds off
De nada