美文网首页
2.2 再端一碗BeautifulSoup

2.2 再端一碗BeautifulSoup

作者: modao233 | 来源:发表于2019-08-06 22:21 被阅读0次

掌握BeautifulSoup的基本用法


from urllib.request import urlopen
from bs4 import BeautifulSoup

html = urlopen("http://pythonscraping.com/pages/warandpeace.html")
bsObj = BeautifulSoup(html.read(), "html.parser")

# nameList = bsObj.findAll("span", {"class" : "green"}, limit=10)
# for name in nameList:
#     print(name.get_text())

# nameList = bsObj.findAll(text = "the prince")
# print(len(nameList))

allText = bsObj.findAll(id = "text")
print(allText[0].get_text())

相关文章

  • 2.2 再端一碗BeautifulSoup

    掌握BeautifulSoup的基本用法

  • 第2章 数据抓取

    第2章 数据抓取 2.1 beautifulsoup 常见操作: 2.2 re表达式 2.2.1在使用re模块时,...

  • PostgreSQL查看版本信息

    1.查看客户端版本 2.查看服务器端版本 2.1 查看详细信息 2.2 查看版本信息 2.2 查看数字版本信息包括...

  • 第二章_复杂HTML解析

    已经确定目标内容后,应该怎么做? 再来一碗 BeautifulSoup 通过属性查找标签 CSS 可以让 HTML...

  • 鹿过

    端一碗水,出门捞一碗月亮

  • BeautifulSoup好一碗孟婆汤

    图片来自风变 一 什么是BeautifulSoup BeautifulSoup 是Python的第三方库,用来pa...

  • 爬虫任务二

    2.1 学习beautifulsoup 学习beautifulsoup,并使用beautifulsoup提取内容。...

  • BeautifulSoup(BS4)的基本使用

    一、BeautifulSoup简介 二、BeautifulSoup安装 三、BeautifulSoup基本使用 导...

  • 碧海

    碧海 端一碗碧海 去云里 云落了 落满脚下的山路 水 接一碗水 阿妈问我 端一碗碧海去哪里

  • BeautifulSoup基础使用

    1. 安装BeautifulSoup BeautifulSoup官方文档 BeautifulSoup安装命令:co...

网友评论

      本文标题:2.2 再端一碗BeautifulSoup

      本文链接:https://www.haomeiwen.com/subject/capgdctx.html