【解决】scrapyd启动job时报错:exceptions.TypeError: __init__() got an unexpected keyword argument '_job'
清泛原创
进入项目spiders目录, 修改 spider.py 文件(你自己的spider的主文件):
def __init__(self):
改为:
def __init__(self, *args, **kwargs):
最后不要忘了重新部署一下:
scrapyd-deploy xxx
参考:https://github.com/scrapy/scrapyd/issues/78
上一篇:scrapyd 转入后台daemon守护模式运行的方法
下一篇:scrapy xpath抓取节点的文本innerText、innerHTML、outerHTML