Scrapy 管道中连接数据库时出现`AttributeError: 'mysqlPipeline' object has no attribute 'opens_spider'`错误,如何解决?

scrapy 管道中连接数据库时出现`attributeerror: 'mysqlpipeline' object has no attribute 'opens_spider'`错误,如何解决?

scrapy 中使用管道存储数据时遇到的问题及解决方法

在使用 scrapy 时,不少开发者在使用管道存储数据时会遇到问题。比如,尝试使用数据库存储数据时遇到报错。本文将针对此问题进行分析,并提供相应的解决方案。

以下是一段遇到此问题的代码示例:

import pymysql

class mysqlpipeline(object):
    conn = none
    cursor = none

    # 连接数据库
    def opens_spider(self, spider):
        self.conn = pymysql.connect(host='127.0.0.1', port=3306, user='root', password='123456', db='test',charset='utf8')

    def process_item(self, item, spider):
        self.cursor = self.conn.cursor()
        try:
            self.cursor.execute('insert into qiubai values("%s","%s")' % (item["author"], item["content"]))
            self.conn.commit()
        except exception as e:
            print(e)
            self.conn.rollback()  # 回滚
        return item

    def close_spider(self, spider):
        self.cursor.close()
        self.conn.close()

报错信息如下:

attributeerror: 'mysqlpipeline' object has no attribute 'opens_spider'

问题原因

从报错信息可以看出,问题出在 opens_spider 方法上。事实上,对于 scrapy 来说,管道内用于连接数据库的方法固定为 open_spider,而非 opens_spider。

解决方案

只需将 opens_spider 修改为 open_spider 即可解决问题。

修改后的代码如下:

import pymysql

class mysqlPipeline(object):
    conn = None
    cursor = None

    # 连接数据库
    def open_spider(self, spider):
        self.conn = pymysql.Connect(host='127.0.0.1', port=3306, user='root', password='123456', db='test',charset='utf8')

    def process_item(self, item, spider):
        ...

    def close_spider(self, spider):
        ...

以上就是Scrapy 管道中连接数据库时出现`AttributeError: 'mysqlPipeline' object has no attribute 'opens_spider'`错误,如何解决?的详细内容,更多请关注其它相关文章!