Checking date against date range in Python
- by Flowpoke
I have a date variable: 2011-01-15 and I would like to get a boolean back if said date is within 3 days from TODAY. Im not quite sure how to construct this in Python. Im only dealing with date, not datetime.
My working example is a "grace period". A user logs into my site and if the grace period is within 3 days of today, additional scripts, etc.…