共计 599 个字符,预计需要花费 2 分钟才能阅读完成。
【百度云搜索,搜各种资料:http://www.lqkweb.com】
【搜网盘,搜各种资料:http://www.swpan.cn】
css 选择器
1、
2、
3、
::attr() 获取元素属性,css 选择器
::text 获取标签文本
举例:
extract_first(”) 获取过滤后的数据,返回字符串,有一个默认参数,也就是如果没有数据默认是什么,一般我们设置为空字符串
extract() 获取过滤后的数据,返回字符串列表
# -*- coding: utf-8 -*-
import scrapy
class PachSpider(scrapy.Spider):
name = 'pach'
allowed_domains = ['blog.jobbole.com']
start_urls = ['http://blog.jobbole.com/all-posts/']
def parse(self, response):
asd = response.css('.archive-title::text').extract() #这里也可以用 extract_first('') 获取返回字符串
# print(asd)
for i in asd:
print(i)
【转载自:http://www.lqkweb.com】
正文完