import pymysql
class QunanPipeline:
def process_item(self, item, spider):
return item
class QunanmysqlPipeline:
def process_item(self, item, spider):
insert_sql = "insert into quietly value(%s,%s,%s,%s,%s,%s,%s,%s,%s,%s,%s)"
self.cur.execute(insert_sql, [item['tit'], item['user_name'], item['date'], item['days'],
item['photo_nums'], item['fee'], item['people'], item['icon_view'],
item['icon_love'], item['icon_comment'], item['places'], item['places1']])
self.db.commit()
return item
def open_spider(self,spider):
self.db = pymysql.connect(host="127.0.0.1", user="root", password="123456",
database="quiet", port=3306, charset='utf8')
self.cur = self.db.cursor()
def close_spider(self,spider):
self.db.close()
self.cur.close()
输出结果
TypeError: not all arguments converted during string formatting
2条回答 默认 最新
- 东华果汁哥 2021-12-20 07:18关注
数据的格式你都写成了%s,%s,%s,%s,%s,%s,%s,%s,%s,%s,%s,这跟字段的格式要一致哦。
如有帮助,请点击我评论上方【采纳该答案】按钮支持一下。本回答被题主选为最佳回答 , 对您是否有帮助呢?解决 无用评论 打赏 举报
悬赏问题
- ¥15 MATLAB解决问题
- ¥35 哪位专业人士知道这是什么原件吗?哪里可以买到?
- ¥15 关于#c##的问题:treenode反序列化后获取不到上一节点和下一节点,Fullpath和Handle报错
- ¥15 一部手机能否同时用不同的app进入不同的直播间?
- ¥15 没输出运行不了什么问题
- ¥20 输入import torch显示Intel MKL FATAL ERROR,系统驱动1%,: Cannot load mkl_intel_thread.dll.
- ¥15 点云密度大则包围盒小
- ¥15 nginx使用nfs进行服务器的数据共享
- ¥15 C#i编程中so-ir-192编码的字符集转码UTF8问题
- ¥15 51嵌入式入门按键小项目