xpath.png

XPath Helper 简单使用方法

  • 1.开启插件 (ctrl+shif+x)
  • 2.鼠标移动到一个标题上方
  • 3.按 shift 键,提取xpath
  • 4.删除xpath尾部[方括号]

高级使用方法 F12 选择源码 copy full xpath

安装 scrapy.Spider

  • https://github.com/hongwenjun/makebook

    
      #获取小说名字,章节的名字和内容
      def parse_content(self, response):
          #小说名字
          name = response.xpath('/html/body/div[2]/div[1]/div[1]/p/a[2]/text()').extract_first()
          result = response.text
          #小说章节名字
          chapter_name = response.xpath('/html/body/div[2]/div/div[2]/h2/text()').extract_first()
分类: 学习编程

0 条评论

发表回复

Avatar placeholder

您的邮箱地址不会被公开。 必填项已用 * 标注