Python module to determine if a date/time is within a certain time period.
https://pypi.org/project/timeperiod2/
| .gitignore | add usage | |
| LICENSE | README and flake8 formatting | |
| MANIFEST.in | add classifieres | |
| README.rst | add usage | |
| setup.py | v20.10.0 | |
| timeperiod.py | fix error message for out-of-range high value | |
| tox.ini | README and flake8 formatting | |
Time Period
Python module for determining if a datetime is within a time period.
Based on the original TimePeriod module written by Paul Boyd <boyd.paul2@gmail.com>.
Installation
$ sudo pip install timeperiod2Usage
import datetime
import timeperiod
# will return True iff we have Monday, Tuesday or Thursday:
timeperiod.in_period('wd {mon tue thu}')
# will return True iff we have "office time"
timeperiod.in_period('wd {Mon-Fri} hr {9-17}', datetime.datetime.now())License
Released under the LGPL:
http://www.gnu.org/licenses/#LGPL
Also see the LICENSE file.