summaryrefslogtreecommitdiff
path: root/kpov_judge/tasks/custom_rdate/rDate.py
diff options
context:
space:
mode:
Diffstat (limited to 'kpov_judge/tasks/custom_rdate/rDate.py')
-rw-r--r--kpov_judge/tasks/custom_rdate/rDate.py18
1 files changed, 0 insertions, 18 deletions
diff --git a/kpov_judge/tasks/custom_rdate/rDate.py b/kpov_judge/tasks/custom_rdate/rDate.py
deleted file mode 100644
index 97885b0..0000000
--- a/kpov_judge/tasks/custom_rdate/rDate.py
+++ /dev/null
@@ -1,18 +0,0 @@
-
-#!/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)