Is there a Python library to convert human readable time interval to 2 datetimes?
Example:
Str(TimeInterval("last week")) # return a tuple (datetime(2023,11,12,0,0,0), datetime(2023,11,19,23,59,59))
Same for today, yesterday, last month, 2 months ago, year-to-date, etc.
As far as I know, there is no direct converter. But, with the
pendulum
library, you can implement it easily by usingnow.subtract()
(as parameter days, months, years):Sample Code:
Output: