scrapy 2.3 正在检测检查运行
2021-06-16 10:28 更新
什么时候? scrapy check
正在运行, SCRAPY_CHECK
环境变量设置为 true
字符串。你可以用 os.environ
在以下情况下对蜘蛛或设置执行任何更改: scrapy check
用途:
import os
import scrapy
class ExampleSpider(scrapy.Spider):
name = 'example'
def __init__(self):
if os.environ.get('SCRAPY_CHECK'):
pass # Do some scraper adjustments when a check is running
以上内容是否对您有帮助:
更多建议: