Skip to content

Instantly share code, notes, and snippets.

@amysoxcolo
Created August 30, 2020 06:39
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save amysoxcolo/d21efdc8dfb7aea00d8c31e746f6db29 to your computer and use it in GitHub Desktop.
Save amysoxcolo/d21efdc8dfb7aea00d8c31e746f6db29 to your computer and use it in GitHub Desktop.
Coronavirus date/time script (after JWZ)
#!/usr/bin/env python
# Coronavirus Date Script
# Copyright (c) 2020 Amy G. Bowersox/Erbosoft Metaverse Design Solutions
#
# Permission is hereby granted, free of charge, to any person obtaining a copy of this software and
# associated documentation files (the "Software"), to deal in the Software without restriction,
# including without limitation the rights to use, copy, modify, merge, publish, distribute,
# sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is
# furnished to do so, subject to the following conditions:
#
# The above copyright notice and this permission notice shall be included in all copies or
# substantial portions of the Software.
#
# THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT
# NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT.
# IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY,
# WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE
# SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
# Based on a snippet of Perl by Jamie Zawinski:
# https://www.jwz.org/blog/2020/08/the-date-is-now-tuesday-march-178th-2020/
from datetime import date, datetime
# this module requires a pip install python-dateutil
import dateutil.tz
# March 2020 is "the month that never ended."
BASEDATE = date(2020, 3, 1)
current = datetime.now(dateutil.tz.tzlocal())
deltadays = current.date() - BASEDATE
# these temporaries are necessary to keep the last line from violating PEP8 (as modified by DevRel standards)
# by being too long
p1 = current.strftime("%a")
p2 = BASEDATE.strftime("%b")
p3 = current.strftime("%H:%M:%S %Z")
p4 = BASEDATE.strftime("%Y")
print(f'{p1} {p2} {deltadays.days + 1} {p3} {p4}')
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment