Skip to content

Instantly share code, notes, and snippets.

@taross-f
Created October 15, 2018 04:29
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 taross-f/4b292d694e5ec2557aa7b2353b7a34b9 to your computer and use it in GitHub Desktop.
Save taross-f/4b292d694e5ec2557aa7b2353b7a34b9 to your computer and use it in GitHub Desktop.
date_span.py
def date_span(start_date, end_date):
for n in range((end_date - start_date).days + 1):
yield start_date + timedelta(n)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment