How do I integrate my Django project with Scrapy?

Asked

Viewed 430 times

0

I’m looking to develop a simple project using Django where I will create a web page and this page will capture data from other pages. The problem is that I cannot integrate the Scrapy with Django.

1 answer

1


Possibility to use Scrapy’s pipeline to integrate directly with Django models (link).

It is also possible to run your Spider as a script that returns a json to you' (link). In the link example some functions will probably be 'deprecated', but the doc is enough to start.

Browser other questions tagged

You are not signed in. Login or sign up in order to post.