我正在寻找一种方法将"明天早上6点"或"下周一中午"转换为适当的DateTime对象。
我想设计一套复杂的规则,但有其他方法吗?
parsedatetime-能够分析‘人类可读’日期/时间表达式的推荐答案模块。
#!/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: %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
这篇关于如何将日期和时间从自然语言转换为日期时间?的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持跟版网!