pyhumandate/README.md
Mahdi Dibaiee 981d7eeda0 chore: add README
fix: pad symbols in string
feat: add `tomorrow` as a special keyword
2018-01-14 14:52:12 +03:30

18 lines
307 B
Markdown

humandate
---------
Parse human-readable dates in Python.
Usage
-----
```
from humandate import parse_date
print(parse_date('next month'))
print(parse_date('I was there an hour ago!'))
print(parse_date('Our event will be held at 12 tomorrow!'))
```
For more examples see [tests.py](humandate/tests.py)