自定义日期字符串到Python日期对象

时间:2016-09-02 14:22:01

标签: python date converter python-3.5

我正在使用Scrapy来解析数据并以Jun 14, 2016 格式获取日期,我试图用datetime.strftime解析它但

我应该使用什么方法来转换自定义日期字符串以及在我的情况下该怎么做。

更新

我想解析UNIX时间戳以保存在数据库中。

1 个答案:

答案 0 :(得分:0)

这样的事情应该有效:

import time
import datetime
datestring = "September 2, 2016"

unixdatetime = int(time.mktime(datetime.datetime.strptime(datestring, "%B %d, %Y").timetuple()))
print(unixdatetime)

返回:1472792400