python抓取数据时失败_关于抓取回来的网页数据保存失败问题???

获取保存的页面数据content = soup.find_all('div',{'class':'single-content'})

pymysqlcon = pymysql.connect(

host='127.0.0.1',

user='root',

password='root',

db='spider',

charset="utf8mb4"

)try:

with pymysqlcon.cursor() as cursor:

sql = "insert into `content`(`content`) values(%s)"

cursor.execute(sql,(content))

pymysqlcon.commit()

finally:

pymysqlcon.close()

报错以下:

Traceback (most recent call last):

File "D:/pycharm/index.py", line 33, in

cursor.execute(sql,(content))

File "D:\Python\lib\site-packages\pymysql\cursors.py", line 168, in execute

query = self.mogrify(query, args)

File "D:\Python\lib\site-packages\pymysql\cursors.py", line 147, in mogrify

query = query % self._escape_args(args, conn)

File "D:\Python\lib\site-packages\pymysql\cursors.py", line 122, in _escape_args

return tuple(conn.literal(arg) for arg in args)

File "D:\Python\lib\site-packages\pymysql\cursors.py", line 122, in

return tuple(conn.literal(arg) for arg in args)

File "D:\Python\lib\site-packages\pymysql\connections.py", line 846, in literal

return self.escape(obj, self.encoders)

File "D:\Python\lib\site-packages\pymysql\connections.py", line 839, in escape

return converters.escape_item(obj, self.charset, mapping=mapping)

File "D:\Python\lib\site-packages\pymysql\converters.py", line 27, in escape_item

val = encoder(val, mapping)

File "D:\Python\lib\site-packages\pymysql\converters.py", line 118, in escape_unicode

return u"'%s'" % _escape_unicode(value)

File "D:\Python\lib\site-packages\pymysql\converters.py", line 73, in _escape_unicode

return value.translate(_escape_table)

TypeError: 'NoneType' object is not callable

  • 0
    点赞
  • 0
    收藏
    觉得还不错? 一键收藏
  • 0
    评论
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值