summaryrefslogtreecommitdiff
path: root/rfc822date.py
diff options
context:
space:
mode:
Diffstat (limited to 'rfc822date.py')
-rwxr-xr-xrfc822date.py27
1 files changed, 27 insertions, 0 deletions
diff --git a/rfc822date.py b/rfc822date.py
new file mode 100755
index 0000000..8ea9446
--- /dev/null
+++ b/rfc822date.py
@@ -0,0 +1,27 @@
+#!/bin/env python3
+
+from datetime import datetime
+import sys
+
+def help():
+ print(sys.argv[0] + " YYYY-MM-DD-HHMMSS [+XXXX]")
+
+# test
+#indate = "2022-12-22-182343"
+
+timezone = "+0000"
+
+if len(sys.argv) <= 1:
+ print("error no arg")
+ help()
+ sys.exit()
+if len(sys.argv) == 3:
+ timezone = sys.argv[2]
+if len(sys.argv) > 3:
+ print("error > 2 args")
+ help()
+ sys.exit()
+
+indate = sys.argv[1]
+d = datetime.strptime(indate, "%Y-%m-%d-%H%M%S")
+print(d.strftime("%a, %d %b %Y %H:%M:%S") + " " + timezone)
in each repos: see "about"-tab (if existing) for more details / README.
mailto contact at omeckman dot net
all timestamps in UTC (German winter time: UTC+01:00, summer time: UTC+02:00)
dark theme is a modded version of: https://gist.github.com/Yoplitein/f4b671a2ec70c9e743fa