python美味汤的安装

pip install beautifulsoup4
升级pip install --upgrade beautifulsoup4
打开
https://python123.io/ws/demo.html
beautifulsoup4用于解析html页面

>>> import requests
>>> r=requests.get('https://python123.io/ws/demo.html')
>>> r.status_code
200
>>> r.text
'<html><head><title>This is a python demo page</title></head>\r\n<body>\r\n<p class="title"><b>The demo python introduces several python courses.</b></p>\r\n<p class="course">Python is a wonderful general-purpose programming language. You can learn Python from novice to professional by tracking the following courses:\r\n<a href="http://www.icourse163.org/course/BIT-268001" class="py1" id="link1">Basic Python</a> and <a href="http://www.icourse163.org/course/BIT-1001870001" class="py2" id="link2">Advanced Python</a>.</p>\r\n</body></html>'
>>> demo=r.text
>>> from bs4 import BeautifulSoup
>>> soup=BeautifulSoup(demo,'html.parser')
>>> print(soup.prettfy())
Traceback (most recent call last):
  File "<pyshell#7>", line 1, in <module>
    print(soup.prettfy())
TypeError: 'NoneType' object is not callable
>>> print(soup.prettify())
<html>
 <head>
  <title>
   This is a python demo page
  </title>
 </head>
 <body>
  <p class="title">
   <b>
    The demo python introduces several python courses.
   </b>
  </p>
  <p class="course">
   Python is a wonderful general-purpose programming language. You can learn Python from novice to professional by tracking the following courses:
   <a class="py1" href="http://www.icourse163.org/course/BIT-268001" id="link1">
    Basic Python
   </a>
   and
   <a class="py2" href="http://www.icourse163.org/course/BIT-1001870001" id="link2">
    Advanced Python
   </a>
   .
  </p>
 </body>
</html>

用法

>>> from bs4 import BeautifulSoup
>>> soup=BeautifulSoup(demo,'html.parser')
>>> import requests
>>> r=requests.get("https://www.baidu.com")
r
>>> r.status_code
200
>>> demo=r.text
>>> from bs4 import BeautifulSoup
>>> soup=BeautifulSoup(demo,'html.parser')
>>> print
<built-in function print>
>>> print(soup.prettify())

BeatifulSoup库解析器
bs4的html解析器:‘html.parser’
lxml的html解析器:‘lxml’ pip install lxml
lxml的xml解析器:‘xml’ pip install lxml
html5lib的解析器:‘html5lib’ pip install html5lib

Beautiful Soup类的基本元素

基本元素说明
Tag标签,最基本的信息组织单元,分别用<>和</>标明开头和结尾
Name标签的名字,<p>…</p>的名字是‘p’,格式:<tag>.name
Attibutes标签的属性,字典形式组织,格式:<tag>.attrs
NavigableString标签内非属性字符串,<>…</>中字符串,格式:<tag>.string
Comment标签内字符串的注释部分,一种特殊的Comment类型

获得tag标签的方法

>>> soup.title
<title>xxx</title>
>>> tag=soup.a
>>> print(tag)
<a href="https://www.baidu.com/">
xxx
</a>
>>> soap.a.name
Traceback (most recent call last):
  File "<pyshell#28>", line 1, in <module>
    soap.a.name
NameError: name 'soap' is not defined
>>> soup.a.name
'a'
>>> soup.a.parent.name
'div'
>>> soup.a.parent.parent.name
'div'
>>> tag.attrs
{'href': 'https://www.busjav.icu/'}
>>> tag=soup.div
>>> print(div)
Traceback (most recent call last):
  File "<pyshell#34>", line 1, in <module>
    print(div)
NameError: name 'div' is not defined
>>> print(tag)

>>> tag.attrs
{'id': 'search-loading'}
>>> tag.div.string
'搜尋中...'
>>> soup.td

>>> soup.td.string
>>> print(soup.td.strin)
None
>>> print(soup.td.string)
None
>>> soup.table.attrs
{'class': ['search-loading-box'], 'border': '0', 'cellpadding': '0', 'cellspacing': '0'}
>>> 

网页遍历
下行
上行
平行

>>> soup.head

>>> soup.body

>>> sooup.body.contents
Traceback (most recent call last):
  File "<pyshell#46>", line 1, in <module>
    sooup.body.contents
NameError: name 'sooup' is not defined
>>> soup.body.contents#下行遍历

>>> soup.body.contents[1]

>>> len(soup.body.contents)
46
>>> soup.body.contents[4]
'\n'
>>> soup.a.parent

>>> soup.a.parents#上行遍历
<generator object PageElement.parents at 0x00000000041272C8>
>>> for parent in soup.a.parents:
	if parent is None:
		print(parent)
	else:
		print(parent.name)

div
div
nav
body
html
[documen

标签树的下行遍历

属性说明
.contents子节点的列表,将<tag>所有儿子节点存入列表
.children子节点的迭代类型,与 .contents,用于循环遍历儿子节点
.descendants子孙节点的迭代类型,包含所有子孙节点,用于循环遍历

标签树的上行遍历

属性说明
.parent节点的父亲标签
.parents节点先辈标签的迭代类型,用于循环遍历先辈节点

标签树的平行遍历
前提是,两标签来自于同一个父节点

属性说明
.next_sibling返回按照HTML文本顺序的下一个平行节点标签
.previous_sibling返回按照HTML文本顺序的上一个平行节点标签
.netx_siblings迭代类型,返回按照HTML文本顺序的后续所有平行节点标签
.previous_siblings迭代类型,返回按照HTML文本顺序的前续所有平行节点标签

平行遍历

>>> r=requests.get('https://python123.io/ws/demo.html')
>>> r.status_code
200
>>> soup=BeautifulSoup(r.text,'html.parser')
>>> soup
<html><head><title>This is a python demo page</title></head>
<body>
<p class="title"><b>The demo python introduces several python courses.</b></p>
<p class="course">Python is a wonderful general-purpose programming language. You can learn Python from novice to professional by tracking the following courses:

<a class="py1" href="http://www.icourse163.org/course/BIT-268001" id="link1">Basic Python</a> and <a class="py2" href="http://www.icourse163.org/course/BIT-1001870001" id="link2">Advanced Python</a>.</p>
</body></html>
>>> soup.a
<a class="py1" href="http://www.icourse163.org/course/BIT-268001" id="link1">Basic Python</a>
>>> soup.a.next_sibling
' and '
>>> soup.a.next_sibling.next_sibling
<a class="py2" href="http://www.icourse163.org/course/BIT-1001870001" id="link2">Advanced Python</a>
>>> soup.a.previous_sibling
'Python is a wonderful general-purpose programming language. You can learn Python from novice to professional by tracking the following courses:\r\n'
>>> soup.a.previous_sibling.previous_sibing
Traceback (most recent call last):
  File "<pyshell#21>", line 1, in <module>
    soup.a.previous_sibling.previous_sibing
  File "D:\Python37_64\lib\site-packages\bs4\element.py", line 646, in __getattr__
    self.__class__.__name__, attr))
AttributeError: 'NavigableString' object has no attribute 'previous_sibing'
>>> for sibling in soup.a.next_siblings:
	print(sibling)

	
 and 
<a class="py2" href="http://www.icourse163.org/course/BIT-1001870001" id="link2">Advanced Python</a>
.
>>> for sibling in soup.a.previous_sibling:
	print(sibling)
  • 1
    点赞
  • 0
    收藏
    觉得还不错? 一键收藏
  • 0
    评论
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值