小编典典

是否有用于从自然语言解析日期和时间的python库?

python

我正在寻找的东西可以将“明天凌晨6点”或“下一天中午”转换为适当的日期时间对象。


阅读 278

收藏
2020-12-20

共1个答案

小编典典

parsedatetime -
Python模块能够解析“人类可读”日期/时间表达式。

#!/usr/bin/env python
from datetime import datetime
import parsedatetime as pdt # $ pip install parsedatetime

cal = pdt.Calendar()
now = datetime.now()
print("now: %s" % now)
for time_string in ["tomorrow at 6am", "next moday at noon", 
                    "2 min ago", "3 weeks ago", "1 month ago"]:
   print("%s:\t%s" % (time_string, cal.parseDT(time_string, now)[0]))

输出量

now: 2015-10-18 13:55:29.732131
tomorrow at 6am:    2015-10-19 06:00:00
next moday at noon: 2015-10-18 12:00:00
2 min ago:  2015-10-18 13:53:29
3 weeks ago:    2015-09-27 13:55:29
1 month ago:    2015-09-18 13:55:29
2020-12-20