72 – 使用使用Beautiful Soup 的的CSS选择器获取节点信息选择器获取节点信息
如何使用如何使用Beautiful Soup 的的CSS选择器获取节点信息选择器获取节点信息
from bs4 import BeautifulSoup
html = '''
ruochen
若尘
淘宝
微软
谷歌
'''
soup = BeautifulSoup(html, 'lxml')
tags = soup.select('.item')
print(tags)
print(type(tags))
for tag in tags:
print(tag)
[
ruochen
,
淘宝
]
ruochen
淘宝
tags= soup.select('#myli')
print(tags)
[
微软
]
tags = soup.select('a')
for tag in tags:
print(tag)
print(tag['href'])
ruochen
https://www.xxx.com
若尘
https://www.xxx.com
淘宝
https://www.taobao.com
微软
https://www.microsoft
谷歌
https://www.google.com
持续更新中。。。。
作者:若尘
评论0
最新资源