如何在Wing IDE中调试scrapy

如何在Wing IDE中调试scrapy


用scrapy startproject YourProjectName 创建项目后,在项目根目录添加一个main.py文件,作为项目启动文件容:

from scrapy.cmdline import execute
execute()

然后单击main.py右键-->File Attribute-->Debug->Run Arugments 输 问题三 入命令参数

scrapy中如何使用代理服务器


在main.py的File Attribute--Environment- Add to Project values
中添加 http_proxy=127.0.0.1:8081 (使用sougou浏览器做代理)

你可能感兴趣的:(代理,scrapy,python,ide,Wing)