[Answered ]-How to Launch a spider from django admin action

2๐Ÿ‘

โœ…

Iโ€™d start with integrating a normal task management process with your django project, see celery package:

Celery is a simple, flexible and reliable distributed system to
process vast amounts of messages, while providing operations with the
tools required to maintain such a system.

Also, see how to use celery with django.

Then, Iโ€™d create a celery task where Scrapy is invoked, see:

Also see:

Hope that helps.

Leave a comment