使用scrapy,我在我的一只蜘蛛中:class IndexSpider(scrapy.Spider): name = "indices" def __init__(self, *args, **kwargs): super(IndexSpider, self).__init__(*args, **kwargs) # set custom settings custom_settings = { 'DOWNLOAD_DELAY': 2, 'ITEM_PIPELINES': { 'freedom.pipelines.IndexPipeline': 300 } }但是,當我稍后嘗試通過 print(dict(self.settings.get('ITEM_PIPELINES')))他們是空的。背景是我想在每個蜘蛛的基礎上控制設置(和可能的管道)。我在這里做錯了什么?
添加回答
舉報
0/150
提交
取消