我想在我的_init_方法中使用一个参数'term'。如您所见,当_init方法获得此参数时,我想将其用作数据库集合的名称并向其中插入数据。但是我不知道如何在整个课程中使用term中的_init的值,那么有人对我有很好的建议吗?

class EPGDspider(scrapy.Spider):
        name = "EPGD"
        allowed_domains = ["epgd.biosino.org"]

    db = DB_Con()
    collection = db.getcollection(term)

    def __init__(self, term=None, *args, **kwargs):
        super(EPGDspider, self).__init__(*args, **kwargs)
        self.start_urls = ['http://epgd.biosino.org/EPGD/search/textsearch.jsp?textquery=%s&submit=Feeling+Lucky' % term]

    def parse(self, response):
        sel = Selector(response)
        sites = sel.xpath('//tr[@class="odd"]|//tr[@class="even"]')
        url_list = []
        base_url = "http://epgd.biosino.org/EPGD"

        for site in sites:
            item = EPGD()
            item['description'] = map(unicode.strip, site.xpath('td[6]/text()').extract())
            self.collection.update({"genID": item['genID']}, dict(item), upsert=True)
            yield item

最佳答案

将其设为instance variable

def __init__(self, term=None, *args, **kwargs):
    super(EPGDspider, self).__init__(*args, **kwargs)

    self.term = term
    # ...


然后,在其他方法中使用self.term引用它:

def parse(self, response):
    print(self.term)
    # ...

关于python - 如何在其他方法中使用“__init__”的参数?,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/36758719/

10-14 17:23