BeautifulSoup安装

以管理员身份运行
BeautifulSoup安装_第1张图片
进入pip安装目录
我的是D:python/Scripts
输入 pip install beautifulsoup4
BeautifulSoup安装_第2张图片
用request库获取某一页面信息

import requests
r=requests.get(“http:python123.io/ws/demo.html”)
r.text

获取到页面信息

demo=r.text
from bs4 import BeautifulSoup
soup=BeautifulSoup(demo,“html.parser”)
print(soup.prettify())

把信息付给demo
from bs4 这个库 导入一个类 BeautifulSoup
demo进行html的解析
用print打印解析结果
BeautifulSoup安装_第3张图片
成功解析demo页面

你可能感兴趣的:(爬虫)