我正在使用sublime texteditor3,当我在构建文件时实际上什么也没做,当我从命令行运行时效果很好,我需要在sublime上安装软件包才能在那运行吗?在Windows上使用python 3.7)
这是从Scrapy网站获取的代码
import scrapy
class QuotesSpider(scrapy.Spider):
name = "quotes"
def start_requests(self):
urls = [
'http://quotes.toscrape.com/page/1/',
'http://quotes.toscrape.com/page/2/',
]
for url in urls:
yield scrapy.Request(url=url, callback=self.parse)
def parse(self, response):
page = response.url.split("/")[-2]
filename = 'quotes-%s.html' % page
with open(filename, 'wb') as f:
f.write(response.body)
self.log('Saved file %s' % filename)
我没有得到错误,但是当我以崇高的态度运行时没有文件创建。
答案 0 :(得分:0)
您不能直接从崇高的状态运行蜘蛛。
您必须创建包含内容的其他python文件
from scrapy import cmdline
cmdline.execute("scrapy crawl spider_name".split())
使用临时项目目录更改其工作目录,然后运行它。