2020
09-24
09-24
python3实现往mysql中插入datetime类型的数据
昨天在这个上面找了好久的错,嘤嘤嘤~很多时候我们在爬取数据存储的时候都需要将当前时间作为一个依据,在python里面没有时间类型可以直接拿来就用的。我们只需要在存储之前将时间类型稍作修饰就行。datetime.datetime.now().strftime("%Y-%m-%d%H:%M:%S")如:#插入产品信息insert_good_sql="""INSERTINTOT_GOOD(good_name,good_type,img_src,good_description,how_to_use,volumetric,price,sale,spider_time)VALUE...
继续阅读 >