Hi, Iβm working on scrapy, I created a scrapy c folder scrapy startproject example
and a written spider to clear all the data from the URL, and I launched the spider using the command scrapy crawl spider_name, its operability and the ability to receive data.
But I had a requirement that I need to run scrapy with one spider file created. I mean a single file with a file similar to
python -u /path/to/spider_file_inside_scrapy_folder_created.py
Is it possible to start a spider without a command scrapy crawlafter creating the project project folder with the spider.py file
source
share