Python 的灵活英文日期短语库?
我正在寻找一个函数,可以将英语日期短语转换为某种代表适当日期的 Python 日期对象。
我正在寻找的事情的一个例子(尽管我很灵活):
- 从现在起三天
- 昨天
- 一个月内
- 明年
- 2011 年 1 月 18 日
- 下周三
有这样的事情吗?也许有另一种语言的吗?
I'm looking for a function that can convert an English date phrase to some kind of Python date object representing the appropriate date.
An example of the kinds of things I'm looking for (though I'm flexible):
- Three days from now
- yesterday
- In a month
- Next year
- January 18, 2011
- Next Wednesday
Is there such a thing? Is there one perhaps in another language?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
parsedatetime,永远的经典:http://code.google.com/p/parsedatetime/
parsedatetime, always a classic: http://code.google.com/p/parsedatetime/
我认为这里最好的选择是 mxDateTime。该文档似乎表明它可以满足您的要求。
I think the best bet here would be the mxDateTime. The documentation seems to suggest that it does what you're looking for.