from bs4 import BeautifulSoup

在获取到response之后 通过html的字符串, 获取BeautifulSoup对象
soup = BeautifulSoup(response.text, ‘lxml’)

学习了三种方法
第一种:find_all 获取所有符合指定条件的内容
eg:time_all = soup.find_all(‘li’,class_=”event-time”)[0]
括号内li是标签 class=”event-time”是过滤器 [0]是索引,不添加则获取所有

第二种:find 获取第一个符合指定条件的内容
eg:time_one = soup.find(‘li’,class_=”event-time”)

第三种:select
eg:li_tag = soup.select(‘li.event-time’)[0]
通过css选择器, li标签, 他的class属性是event-time, 也就是class=”event-time”

你可能感兴趣的:(from bs4 import BeautifulSoup)