python3问题-在idea里面运行爬虫

在idea里面运行爬虫

新建main文件

# -*- coding: utf-8 -*-

from scrapy.cmdline import execute
import sys, os

# sys.path.append(os.path.dirname(os.path))
sys.path.append(os.path.dirname(os.path.abspath(__file__)))

# execute(['scrapy', 'crawl', 'car'])
execute(['scrapy', 'crawl', 'chelogo'])

python3问题-在idea里面运行爬虫_第1张图片

最近写python遇到的一些问题,望给大家一点帮助。我是小王,CSDN博客:https://blog.csdn.net/cmqwan

你可能感兴趣的:(查过就记,python)