Converting strings into usable time objects. The time objects, known as Date and Range have a number of methods that allow
you to easily change and manage your users input dynamically.
pip install timestring
Ranges are simply two Dates. The first date, Range().start and Range().end represent just that, a start and end to a period of time.
There are a couple reference points for Ranges.
- no reference =>
x[ - - - - ]- Adds the time to today.
Range('1 week')would betoday + 7 days
- Adds the time to today.
this=>[ - - x - - ]this monthis from start of month to end of month. Therefore today is included.Range("today") in Range("this month") == True
next=>x [ - - - - ]next 3 weekstakes today and finds the start of next weeks and continues to contain 3 weeks.Range("today") in Range("next 5 days") == FalseandRange("tomorrow") in Range("next 5 days") == True
ago=>[ - - - - ] x- same as
nextbut in the past
- same as
last=>[ - - - - x ]last 6 daystakes all of Today and encapsulates the last 6 daysRange("today") in Range("last 6 days") == True- empty reference ex
10 days
The examples below all work with the following terms minute, hour, day, month and year work for the examples below. fyi Today is 5/14/2013
thiswill look at the references in its entirety
>>> Range('this year')
From 01/01/13 00:00:00 to 01/01/14 00:00:00Notice how this year is from jan 1s to jan 1st of next year The full year, all 12 months, is this year
agoandlastwill reference in the past
>>> Range('1 year ago')
From 01/01/11 00:00:00 to 01/01/12 00:00:001 year ago is equivalent to year ago, and last year
Note you add more years like this 5 years ago which will be From 01/01/07 00:00:00 to 01/01/08 00:00:00
See examples see the test file
More examples / documentation coming soon.
timestring is licensed under the Apache Licence, Version 2.0 (http://www.apache.org/licenses/LICENSE-2.0.html).
