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

Python 爬虫 BeautifulSoup库

程序员文章站 2022-04-26 10:29:11
...

Beautiful Soup库的理解

Python 爬虫 BeautifulSoup库

HTML基础

标签
Python 爬虫 BeautifulSoup库

# 引用库的方法
from bs4 import BeautifulSoup
import bs4

Beautiful Soup 基本元素

Python 爬虫 BeautifulSoup库

BS HTML内容遍历

Python 爬虫 BeautifulSoup库
下行遍历:
Python 爬虫 BeautifulSoup库
上行遍历:
Python 爬虫 BeautifulSoup库

平行遍历:同一个父亲节点才构成平行遍历关系
Python 爬虫 BeautifulSoup库

HTML格式化输出

prettify() # 给html增加换行符
print(soup.prettify()) # 打印格式话的html
相关标签: Python 爬虫