Skip to content
Advertisement

__init__() got an unexpected keyword argument ‘_job’

I am trying to use scrapyd with scrapy.

When I use this the code below it works fine.

JavaScript

But when I use it with selenium, it doesn’t

JavaScript

My spider never runs. In jobs it gets listed under finished, and on error log I see exceptions.TypeError: __init__() got an unexpected keyword argument '_job'.

Here is the full error log

JavaScript

What do I need to do so I don’t get the error?

Advertisement

Answer

You redefined __init__ in your subclass and changed it’s signature from scrapy.Spider. You also didn’t call scrapy.Spider‘s __init__ method.

scrapy.Spider source for init

User contributions licensed under: CC BY-SA
9 People found this is helpful
Advertisement