scrapy-djangoitem icon indicating copy to clipboard operation
scrapy-djangoitem copied to clipboard

Scrapy extension to write scraped items using Django models

Results 13 scrapy-djangoitem issues
Sort by recently updated
recently updated
newest added

When opening `scrapy shell` or `running crawl` I get an error requesting the `SECRET_KEY` from `django` ``` raise ImproperlyConfigured("The SECRET_KEY setting must not be empty.") django.core.exceptions.ImproperlyConfigured: The SECRET_KEY setting must...

I have wrote new delete function to delete existing model item if commit=False, but its not working, not showing any error. How can I achieve this? because I want to...

Allows you to save the items in a pipeline with Django's async ORM like so: ``` class FooPipeline(object): async def process_item(self, item, spider): await item.asave() return item ```