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.
11 lines
266 B
11 lines
266 B
from scrapy.crawler import CrawlerProcess
|
|
from scrapy.utils.project import get_project_settings
|
|
|
|
process = CrawlerProcess(get_project_settings())
|
|
|
|
# myspd1是爬虫名
|
|
process.crawl('myspd1')
|
|
process.crawl('myspd2')
|
|
process.crawl('myspd3')
|
|
|
|
process.start()
|