Loading

摘要: scrapy默认发送的是get请求,发送post请求时需要重写start_requests(self)方法 import scrapy class PostspiderSpider(scrapy.Spider): name = 'postSpider' allowed_domains = ['www 阅读全文
posted @ 2021-11-01 18:56 北兢王 阅读(485) 评论(0) 推荐(0)
摘要: 在执行爬虫时使用以下命令 scrapy crawl 爬虫名称 -s JOBDIR=保存记录信息的路径 例: scrapy crawl movie -s JOBDIR=stop_scrapy # 执行命令会启动指定爬虫,并且记录状态到指定目录stop_scrapy中 爬虫已经启动,我们可以按键盘上的c 阅读全文
posted @ 2021-11-01 00:10 北兢王 阅读(295) 评论(0) 推荐(0)
摘要: CrawlSpider其实是Spider的一个子类,除了继承到Spider的特性和功能外,还派生除了其自己独有的更加强大的特性和功能。其中最显著的功能就是”LinkExtractors链接提取器“。Spider是所有爬虫的基类,其设计原则只是为了爬取start_url列表中网页,而从爬取到的网页中提 阅读全文
posted @ 2021-11-01 00:08 北兢王 阅读(108) 评论(0) 推荐(0)