爬虫(BeautifulSoup--select--class的选择)

Posted Sip

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了爬虫(BeautifulSoup--select--class的选择)相关的知识,希望对你有一定的参考价值。

<div class="item name" title="中央公园">

<a href="/Attraction_Review-g60763-d105127-Reviews-Central_Park-New_York_City_New_York.html" target="_blank" class="poiTitle" onclick="widgetEvCall(‘handlers.shelfItemClick‘, event, this)" data-tpp="Attractions" data-tpact="shelf_item_click" data-tpatt="1|poi|105127" data-tpid="162">

中央公园

</a>

</div>

select(.item.name)  中间不加空格表示选中class为   item name  中包含的元素

<div class="item" title="中央公园">

  <div class = name>中央公园</div>

</div>

select(.item .name)中间有空格 表示选中为 class为item 下 class为 name的元素

以上是关于爬虫(BeautifulSoup--select--class的选择)的主要内容,如果未能解决你的问题,请参考以下文章

python爬虫时,bs4无法读取网页标签中的文本?

从 BeautifulSoup.select 检索整个列表作为文本

BeautifulSoup select方法

15《Python 原生爬虫教程》爬虫和反爬虫

Python爬虫入门:爬虫基础了解

Python爬虫|网络爬虫简介