欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页  >  IT编程

Python获取网络数据之安装bs4库及实例应用讲解

程序员文章站 2022-03-09 22:03:03
1.用管理员身份运行cmd 2.pip install beautifulsoup4 (不是beautifulsoup) bs4主要方法: exp:以获取百度标题为例 import request...

1.用管理员身份运行cmd

2.pip install beautifulsoup4 (不是beautifulsoup)

bs4主要方法:

Python获取网络数据之安装bs4库及实例应用讲解

exp:以获取百度标题为例

import requests #导入requests库

from bs4 import beautifulsoup #导入beautifulsoup方法 主要大小写

r = requests.get('https://www.baidu.com') #r为

r.raise_for_status()

r.encoding = r.apparent_encoding

html = beautifulsoup(r.text)

print(html.title) #输出获取html代码中title标签内容