如何将 RFC822 转换为 python 日期时间对象?
我知道如何以相反的方式做到这一点......那就是:
>>> dt.rfc822()
'Sun, 09 Mar 1997 13:45:00 -0500'
I know how to do this the other way around... it would be:
>>> dt.rfc822()
'Sun, 09 Mar 1997 13:45:00 -0500'
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(3)
在 python3 中,parsedate_tz 已移至 email.utils
in python3 parsedate_tz has moved to email.utils
从 python 3.3 开始,有 email.utils.parsedate_to_datetime(日期)
As of python 3.3 there is email.utils.parsedate_to_datetime(date)
如果你去掉时区,你可以这样做:
If you strip off the time zone, you can do it like this: