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?
|
|
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. |
|||||||||||||
|
|
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. |
|||||||||||||||||||||
|
|
Add DJANGO_SETTINGS_MODULE env in your scrapy project's settings.py
Now you can use DjangoItem in your scrapy project. Edit: |
||||
|
|
|
For Django 1.4, the project layout has changed. Instead of /myproject/settings.py, the settings module is in /myproject/myproject/settings.py. I also added path's parent directory (/myproject) to sys.path to make it work correctly.
|
|||||
|
|
Check out django-dynamic-scraper, it integrates a Scrapy spider manager into a Django site. |
|||
|
|