当前位置:   article > 正文

html 获取标签name属性的值,Python HTML解析,获取标签名称及其值

html 获得name 的 value

使用.text或.string属性获取元素的文本内容.

使用.get(‘attrname’)或[‘attrname’]来获取属性值.

html = '''

This is title

'''

from bs4 import BeautifulSoup

soup = BeautifulSoup(html)

print('name={} value={}'.format('title', soup.title.text)) #

print('name={} value={}'.format('link', soup.link['href'])) #

输出:

name=title value= This is title

name=link value=.../style.css

根据OP的评论更新:

def get_text(el): return el.text

def get_href(el): return el['href']

# map tag names to functions (what to retrieve from the tag)

what_todo = {

'title': get_text,

'link': get_href,

}

for el in soup.select('head *'): # To retrieve all children inside `head`

f = what_todo.get(el.name)

if not f: # skip non-title, non-link tags.

continue

print('name={} value={}'.format(el.name, f(el)))

输出:与上述相同

声明:本文内容由网友自发贡献,不代表【wpsshop博客】立场,版权归原作者所有,本站不承担相应法律责任。如您发现有侵权的内容,请联系我们。转载请注明出处:https://www.wpsshop.cn/w/很楠不爱3/article/detail/110666
推荐阅读
相关标签
  

闽ICP备14008679号