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?

link|improve this question

68% accept rate
possible duplicate of Use only some parts of Django? – S.Lott Nov 24 '10 at 22:21
3  
That's not really what I am looking for because I already am using django. I don't want to just use the ORM. I also don't want to have to maintain to separate settings files. – bababa Nov 24 '10 at 22:36
You want to use one part of Django: the ORM. That's a common question. Please search. The Django site referenced in that question has the specific ways to use the ORM separately without extra settings. Please actually read the question, the answers and follow the links. This is a common question. It's been answered. – S.Lott Nov 25 '10 at 3:50
1  
Sorry S. Lott, this is not the same question. – Paperino Apr 23 '11 at 17:01
feedback

3 Answers

Add DJANGO_SETTINGS_MODULE env in your scrapy project's settings.py

import os
os.environ['DJANGO_SETTINGS_MODULE'] = 'your_django_project.settings'

Now you can use DjangoItem in your scrapy project.

link|improve this answer
feedback
up vote 7 down vote accepted

If anyone else is having the same problem, this is how I solved it.

I added this to my scrapy settings.py file:

def setup_django_env(path):
    import imp, os
    from django.core.management import setup_environ

    f, filename, desc = imp.find_module('settings', [path])
    project = imp.load_module('settings', f, filename, desc)       

    setup_environ(project)

setup_django_env('/path/to/django/project/')

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.

link|improve this answer
Thank you for posting this. – Paperino Dec 29 '10 at 4:06
Here's a related answer that includes pipeline.py code: stackoverflow.com/questions/7883196/… – Lionel Nov 27 '11 at 16:44
feedback

The opposite solution (setup scrapy in a django management command):

# -*- coding: utf-8 -*-
# myapp/management/commands/scrapy.py 

from __future__ import absolute_import
from django.core.management.base import BaseCommand

class Command(BaseCommand):

    def run_from_argv(self, argv):
        self._argv = argv
        self.execute()

    def handle(self, *args, **options):
        from scrapy.cmdline import execute
        execute(self._argv[1:])

and in django's settings.py:

import os
os.environ['SCRAPY_SETTINGS_MODULE'] = 'scrapy_project.settings'

Then instead of scrapy foo run ./manage.py scrapy foo.

UPD: fixed the code to bypass django's options parsing.

link|improve this answer
works like a charm, thanks – dominik Mar 5 at 19:29
@Mikhail: I'm actually trying your code snippet with Django 1.4 and Scrapy 0.14.3. Unfortunately, it does not work. For instance, if I want to execute python manage.py scrapy list inside the Django project folder, I always get ImportError: No module named cmdline. However, the module named cmdline does exist and the site-packages directory of my Python installation is in the PYTHONPATH as well. What am I doing wrong? Thanks in advance! – Peter Stahl May 10 at 22:39
do you have scrapy in your PYTHONPATH? – Mikhail Korobov May 11 at 1:43
1  
@Mikhail: I just realized that I cannot execute Scrapy's command line options such as -o scraped_data.json -t json. I know how to add options to commands in general, but how to link them to Scrapy's counterparts? – Peter Stahl May 12 at 12:10
1  
@Peter: please try the updated example. It should pass options to scrapy and not try to handle them as django's options. – Mikhail Korobov May 13 at 19:27
show 2 more comments
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.