Skip to content

Instantly share code, notes, and snippets.

@acwoss
Created May 8, 2018 15:55
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 acwoss/2e74c6fe018f84995f65e0de4cd705d3 to your computer and use it in GitHub Desktop.
Save acwoss/2e74c6fe018f84995f65e0de4cd705d3 to your computer and use it in GitHub Desktop.
TomatoHighlevelCategory created by acwoss - https://repl.it/@acwoss/TomatoHighlevelCategory
import datetime
start = datetime.datetime(year=2018, month=5, day=8, hour=13, minute=30)
end = datetime.datetime(year=2018, month=5, day=8, hour=15, minute=0)
interval = datetime.timedelta(minutes=1)
while start <= end:
print(start)
start += interval
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment