- 使用scrapy shell http://bj.maitian.cn/esfall访问麦田房产 北京的二手房 ,得到response:第一页的html
- 目标:获取标题、价格、面积、区的信息
- 标题:response.xpath('//div[@class="list_title"]/h1/a/text()').extract_first()
extract_first():只提取第一个值
//div:找到所有的div标签
[@class=""]:按标签属性的值查找 - 价格:response.xpath('//div[@class="list_title"]/div[@class="the_price"]/ol/strong/span/text()').extract()
- 面积:response.xpath('//div[@class="list_title"]/p/span/text()').extract_first()
- 区:response.xpath('//div[@class="list_title"]/p[@class="house_hot"]/span/text()').extract_first()
相关文章
- 02-1724 Scrapy爬虫的基本使用
- 02-17Cisco路由交换CCNP中级课程-实验34:BGP协议使用规则特性案例
- 02-17在Windows上以Vi模式使用Python shell
- 02-17继续分享shell 之变量使用
- 02-17shell 变量的使用
- 02-17Bash shell 中,select 使用举例
- 02-17delphi中最小化其他程序及所有程序最小化(使用 shell.minimizeAll 和自己寻找窗口这两种办法)
- 02-17python的map函数的使用方法详解以及使用案例(处理每个元素的自增、自减、平方等)
- 02-17nRF5 SDK for Mesh(八) Exploring Mesh APIs using light switch example,使用 灯开关 案例探索BLE mesh 的APIS
- 02-17shell脚本之if使用语句进行条件测试