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

Does DjangoItem support ManyToMany fields? currently when I try to add ManyToMany related objects with DjangoItem I get this error: `raise KeyError(f"{self.__class__.__name__} does not support field: {key}") KeyError: 'ItemNameItem does...

It would be very helpful if you would document a complete, step by step process for handling multiple models at the same time. I have found, after much searching, how...

Django is now both used in production with version 2+ and 3+. is there an intention to update this package and its tests?

I'm scraping a listing of events and storing them in an `Event` model. This model inherits from [`model_utils.models.TimeStampedModel`](https://django-model-utils.readthedocs.io/en/latest/models.html#timestampedmodel) which gives auto-populated `created` and `updated` fields, which I find useful. Unfortunately,...

Hello please view this functionality I also make logic for scrapy parser to use

Hello ! Thank you very much for your work. In the "Caveats" Section of your readme you warn us about the use of DjangoItem in DB bigger than "millions" of...

Allowing support for Foreign Key insertion. You have to setup the `pk` value in the field.

I have a scrapy spider run by celery which contains django-item. And I have some errors when using scrapy-djangoitem: ```shell Traceback (most recent call last): File "/usr/local/bin/celery", line 9, in...

I need a few temporary fields aside from the ones in the model. It would be super awesome if DjangoItem could inherit from a Form where those extra fields and...

To me it looks like models with ForeignKey are not supported ?