因为class是python的关键字,所以在写过滤的时候,应该是这样写:
r = requests.get(web_url, headers=headers) # 向目标url地址发送get请求,返回一个response对象 all_a = BeautifulSoup(r.text, 'lxml').find_all('a', class_='cV68d') # 获取网页中的class为cV68d的所有a标签
这里总结:
凡是在[]外面的都是class_,[]里面的都是class。
因为class是python的关键字,所以在写过滤的时候,应该是这样写:
r = requests.get(web_url, headers=headers) # 向目标url地址发送get请求,返回一个response对象 all_a = BeautifulSoup(r.text, 'lxml').find_all('a', class_='cV68d') # 获取网页中的class为cV68d的所有a标签
这里总结:
凡是在[]外面的都是class_,[]里面的都是class。