You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

7 lines
311 B

5 years ago
from scrapy.crawler import CrawlerProcess
from scrapy.utils.project import get_project_settings
if __name__ == '__main__':
process = CrawlerProcess(get_project_settings())
5 years ago
process.crawl('chacewangSpider') # 你需要将此处的spider_name替换为你自己的爬虫名称
5 years ago
process.start()