Created
November 30, 2021 02:59
-
-
Save devsamuelv/10f25a91b89efc1e0ccec1fd8ba4679a to your computer and use it in GitHub Desktop.
Time Until FRC Kickoff
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
import datetime | |
import dateutil.rrule | |
today = datetime.datetime.today() | |
kickoff = datetime.datetime(2022, 1, 8, 11, 30) | |
untill = kickoff - today | |
print(str(untill.days) + "." + str(untill.seconds)) |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment