beautifulsoup的一些使用

Posted 月河

tags:

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

自动补全代码:

import requests
from bs4 import BeautifulSoup
response=requests.get(https://www.ithome.com/html/it/340684.htm,timeout=9)
result=response.text
soup=BeautifulSoup(response.content,lxml)
print(soup.prettify())#如果html代码补全,则自动补全
print(soup.title.string)

查找标签

#基本使用
soup.title#<title>xxxxxxx</title>
soup.title.string#xxxxxx

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

使用python和BeautifulSoup从网页检索链接

BeautifulSoup中的一些问题

beautifulsoup的简单使用

解析库BeautifulSoup使用

python爬虫之beautifulsoup的使用

四 . 爬虫 BeautifulSoup库参数和使用