Open
Description
The following is the detailed code
$ python
Python 3.7.10 (default, Mar 11 2021, 11:19:36)
[GCC 10.2.0] on linux
Type "help", "copyright", "credits" or "license" for more information.
>>> import dateparser
>>> dateparser.parse("today")
datetime.datetime(2021, 3, 11, 16, 52, 25, 549683)
>>> dateparser.parse("tonight")
>>> print(dateparser.parse("tonight"))
None
>>>