Scrapy项目运行和debug断点调试
-
在项目的文件夹下增加一个文件
debug.py
#debug.py from scrapy.cmdline import execute import os import sys # 添加当前项目的绝对地址 sys.path.append(os.path.dirname(os.path.abspath(__file__))) # 执行 scrapy 内置的函数方法execute, 使用 crawl 爬取并调试,最后一个参数example 是我的爬虫文件名 execute(['scrapy', 'crawl', 'example'])
-
然后直接运行debug.py文件,即可添加断点进行调试