Simple Python library for parsing at command string into datetime objects.
noon next day -> 2018-10-11 12:00:00
To install at-date simply use pip:
pip install atdate
To use at-date import parse function.
>>> from atdate import parse
>>> parse('noon next day')
datetime.datetime(2018, 10, 11, 12, 0)
>>> parse('now + 8 hours')
datetime.datetime(2018, 10, 10, 15, 42, 24)
More info can be found in docs/ directory or in docs page page.
Take a look at CONTRIBUTING guide.
At-date is licensed under MIT License. See LICENSE for more information.