Is it possible to access my django models inside of a Scrapy pipeline, so that I can save my scraped data straight to my model?
I've seen this, but I don't really get how to set it up?
feedback
|
|
Add DJANGO_SETTINGS_MODULE env in your scrapy project's settings.py
Now you can use DjangoItem in your scrapy project. | |||
|
feedback
|
|
If anyone else is having the same problem, this is how I solved it. I added this to my scrapy settings.py file:
Note: the path above is to your django project folder, not the settings.py file. Now you will have full access to your django models inside of your scrapy project. | |||||
feedback
|
|
The opposite solution (setup scrapy in a django management command):
and in django's settings.py:
Then instead of UPD: fixed the code to bypass django's options parsing. | |||||||||||||||
feedback
|