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主要方法:
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标签内容