Scrapy Pipeline为每个start_url更新mysql

时间:2017-04-13 03:34:32

标签: python scrapy scrapy-pipeline

我有一个蜘蛛从MySQL数据库中读取start_urls并从每个页面中抓取未知数量的链接。我想使用pipelines.py来使用已删除的链接更新数据库,但我不知道如何将start_url返回到SQL UPDATE语句的管道中。

这是可行的蜘蛛代码。

import scrapy
import MySQLdb
import MySQLdb.cursors
from scrapy.http.request import Request

from youtubephase2.items import Youtubephase2Item

class youtubephase2(scrapy.Spider):
name = 'youtubephase2'

def start_requests(self):
    conn = MySQLdb.connect(user='uname', passwd='password', db='YouTubeScrape', host='localhost', charset="utf8", use_unicode=True)
    cursor = conn.cursor()
    cursor.execute('SELECT resultURL FROM SearchResults;')
    rows = cursor.fetchall()

    for row in rows:
        if row:
            yield Request(row[0], self.parse)
    cursor.close()

def parse(self, response):
    for sel in response.xpath('//a[contains(@class, "yt-uix-servicelink")]'):
        item = Youtubephase2Item()
        item['pageurl'] = sel.xpath('@href').extract()
        yield item

这是我需要使用start_url作为SQL UPDATE语句的WHERE条件使用链接来更新数据库的pipeline.py。因此,SQL语句中的start_url是我想要完成的占位符。

import MySQLdb
import MySQLdb.cursors
import hashlib
import re
from scrapy import log
from scrapy.exceptions import DropItem
from twisted.enterprise import adbapi
from youtubephase2.items import Youtubephase2Item

class MySQLStorePipeline(object):
    def __init__(self):
        self.conn = MySQLdb.connect(user='uname', passwd='password', db='YouTubeScrape', host='localhost', charset="utf8", use_unicode=true)
        self.cursor = self.conn.cursor()

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

        self.cursor.execute("""UPDATE SearchResults SET PageURL = %s WHERE ResultURL = start_url[
                    VALUES (%s)""",
                   (item['pageurl']
                                    ))

        self.conn.commit()

    except MySQLdb.Error, e:
        log.msg("Error %d: %s" % (e.args[0], e.args[1]))

    return item

希望我的问题很清楚。我以前成功地使用了pipeline.py将项目插入到数据库中。

1 个答案:

答案 0 :(得分:0)

您可以使用meta Request参数在相关请求和项目之间传递相关信息:

def start_requests(self):
    conn = MySQLdb.connect(user='uname', passwd='password', db='YouTubeScrape', host='localhost', charset="utf8", use_unicode=True)
    cursor = conn.cursor()
    cursor.execute('SELECT resultURL FROM SearchResults;')
    rows = cursor.fetchall()

    for row in rows:
        if row:
            yield Request(row[0], self.parse, meta=dict(start_url=row[0]))
    cursor.close()

def parse(self, response):
    for sel in response.xpath('//a[contains(@class, "yt-uix-servicelink")]'):
        item = Youtubephase2Item()
        item['pageurl'] = sel.xpath('@href').extract()
        item['start_url'] = response.meta['start_url']
        yield item

现在,您也可以使用response.url,但由于重定向或其他内容,这可能会发生变化,因此以后可能会与您在数据库中的内容不同。

最后,您必须更新管道,以便将item['start_url']作为start_url

中的cursor.execute参数传递