Scrapy管道查询的不是字符串格式化期间转换的所有参数

时间:2018-10-15 08:30:12

标签: python scrapy psycopg2

你好,我正在尝试使用scrapy插入postgresql。

我正在尝试使用1个蜘蛛将数据插入1个数据库的多个列中

用于插入1个表的代码有效,但是当我更改数据库时,它需要插入多个表。

我重写了管道查询的代码,现在当我尝试运行我的Spider时,它返回“不是在格式化字符串时转换了所有参数”

我知道在python中使用“%s”查询时出现问题,但是我不知道如何解决或更改查询。

这是我的管道。

import psycopg2
class TutorialPipeline(object):
    def open_spider(self, spider):
        hostname = 'localhost'
        username = 'postgres'
        password = '123' # your password
        database = 'discount'
        self.connection = psycopg2.connect(host=hostname, user=username, password=password, dbname=database)
        self.cur = self.connection.cursor()

    def close_spider(self, spider):
        self.cur.close()
        self.connection.close()

    def process_item(self, item, spider):
        self.cur.execute("insert into discount(product_name,product_price,product_old_price,product_link,product_image) values(%s,%s,%s,%s,%s)",(item['product_name'],item['product_price'],item['product_old_price'],item['product_link'],item['product_image']))
        self.cur.execute("insert into categories(name) values(%s)",(item['category_name']))
        self.cur.execute("insert into website(site) values(%s)",(item['product_site']))
        self.connection.commit()
        return item

编辑:此处出现回溯错误

  

self.cur.execute(“插入类别(名称)   values(%s)“,(item ['category_name']))TypeError:并非所有参数   在字符串格式化期间转换

1 个答案:

答案 0 :(得分:1)

使用命名参数。简化示例:

def process_item(self, item, spider):
    self.cur.execute('''
        insert into discount(product_name, product_price) 
        values(%(product_name)s, %(product_price)s)''',
        item)
    self.cur.execute('''
        insert into categories(name) 
        values(%(category_name)s)''',
        item)
    self.cur.execute('''
        insert into website(site) 
        values(%(product_site)s)''',
        item)
    self.connection.commit()
    return item

详细了解Passing parameters to SQL queries.