Python BeautifulSoup的使用

Posted

tags:

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

2017-07-24 22:39:14 

Python3 中的beautifulsoup引入的包是bs4

import requests
from bs4 import *

r = requests.get(http://jwc.seu.edu.cn/)

soup = BeautifulSoup(r.text,html.parser)

#prettify()函数可以将html以易读的形式展现出来
print(soup.prettify())

#find_all(tag) 返回所有的tag,可以使用字典的索引方式进行查找到你需要的东西
for k in soup.find_all(link):
    print(k[href])

 

以上是关于Python BeautifulSoup的使用的主要内容,如果未能解决你的问题,请参考以下文章

python 爬虫 requests+BeautifulSoup 爬取简单网页代码示例

在 Python 中使用 BeautifulSoup 从脚本标签中提取文本

Python:使用 BeautifulSoup 库抓取百度天气

python中的BeautifulSoup使用小结

如何解决'连接中止'。使用BeautifulSoup在Python中出错

直接从 Python 在浏览器中启动 HTML 代码(由 BeautifulSoup 生成)