BeautifulSoup的基本使用解析网页
Posted
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了BeautifulSoup的基本使用解析网页相关的知识,希望对你有一定的参考价值。
之前已经提到beautifulsoup的安装方法
教程地址为:最新python3.6安装beatifulsoup教程
import requests r = requests.get("") r.text from bs4 import BeautifulSoup soup = BeautifulSoup("<p>data</p>","html.parser") print (soup.prettify())
本文出自 “大李子” 博客,谢绝转载!
以上是关于BeautifulSoup的基本使用解析网页的主要内容,如果未能解决你的问题,请参考以下文章
爬虫库requests和BeautifulSoup的基本使用