[Django]-Djangoitem in scrapy

1👍

✅

Here is how it solved.

For some reason pip-install did not actually install all the directories that come with scrapy. The djangoitem was not being installed.

I used easy_install to reinstall scrapy and the error was gone.

4👍

It is an external package

pip install scrapy-djangoitem

2👍

This is now moved to another package called scrapy_djangoitem

See more here:

Leave a comment