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.
13 lines
296 B
13 lines
296 B
# -*- coding: utf-8 -*-
|
|
"""
|
|
启动入口类
|
|
"""
|
|
|
|
from scrapy.cmdline import execute
|
|
|
|
if __name__ == '__main__':
|
|
# news_denkbares新闻网站采集启动
|
|
execute(['scrapy', 'crawl', 'news_denkbares'])
|
|
|
|
# shop_pot 毒品网站采集启动
|
|
# execute(['scrapy', 'crawl', 'shop_pot'])
|