112

我想根据其名称打印属性值,例如

<META NAME="City" content="Austin">

我想做这样的事情

soup = BeautifulSoup(f)  # f is some HTML containing the above meta tag
for meta_tag in soup("meta"):
    if meta_tag["name"] == "City":
        print(meta_tag["content"])

上面的代码给出了一个KeyError: 'name',我相信这是因为 name 被 BeatifulSoup 使用,所以它不能用作关键字参数。

4

7 回答 7

183

这很简单,使用以下 -

>>> from bs4 import BeautifulSoup
>>> soup = BeautifulSoup('<META NAME="City" content="Austin">')
>>> soup.find("meta", {"name":"City"})
<meta name="City" content="Austin" />
>>> soup.find("meta", {"name":"City"})['content']
u'Austin'

如果有任何不清楚的地方,请发表评论。

于 2012-06-26T10:51:26.533 回答
34

theharshest回答了这个问题,但这是做同样事情的另一种方法。此外,在您的示例中,您的 NAME 大写,而在您的代码中,您的名称为小写。

s = '<div class="question" id="get attrs" name="python" x="something">Hello World</div>'
soup = BeautifulSoup(s)

attributes_dictionary = soup.find('div').attrs
print attributes_dictionary
# prints: {'id': 'get attrs', 'x': 'something', 'class': ['question'], 'name': 'python'}

print attributes_dictionary['class'][0]
# prints: question

print soup.find('div').get_text()
# prints: Hello World
于 2014-03-12T17:56:56.417 回答
10

派对迟到了 6 年,但我一直在寻找如何提取html 元素的标签 属性值,因此:

<span property="addressLocality">Ayr</span>

我想要“地址位置”。我一直被引导回到这里,但答案并没有真正解决我的问题。

我最终是如何做到的:

>>> from bs4 import BeautifulSoup as bs

>>> soup = bs('<span property="addressLocality">Ayr</span>', 'html.parser')
>>> my_attributes = soup.find().attrs
>>> my_attributes
{u'property': u'addressLocality'}

因为它是一个字典,所以你也可以使用keysand 'values'

>>> my_attributes.keys()
[u'property']
>>> my_attributes.values()
[u'addressLocality']

希望它可以帮助别人!

于 2018-04-10T15:53:15.757 回答
8

theharshest 的答案是最好的解决方案,但仅供参考,您遇到的问题与 Beautiful Soup 中的 Tag 对象就像 Python 字典的事实有关。如果您在没有 'name' 属性的标签上访问 tag['name'],则会收到 KeyError。

于 2012-06-26T12:18:24.797 回答
8

以下作品:

from bs4 import BeautifulSoup

soup = BeautifulSoup('<META NAME="City" content="Austin">', 'html.parser')

metas = soup.find_all("meta")

for meta in metas:
    print meta.attrs['content'], meta.attrs['name']
于 2017-03-23T20:40:16.377 回答
1

也可以尝试此解决方案:

查找值,该值写入表的范围内

html内容


<table>
    <tr>
        <th>
            ID
        </th>
        <th>
            Name
        </th>
    </tr>


    <tr>
        <td>
            <span name="spanId" class="spanclass">ID123</span>
        </td>

        <td>
            <span>Bonny</span>
        </td>
    </tr>
</table>

Python代码


soup = BeautifulSoup(htmlContent, "lxml")
soup.prettify()

tables = soup.find_all("table")

for table in tables:
   storeValueRows = table.find_all("tr")
   thValue = storeValueRows[0].find_all("th")[0].string

   if (thValue == "ID"): # with this condition I am verifying that this html is correct, that I wanted.
      value = storeValueRows[1].find_all("span")[0].string
      value = value.strip()

      # storeValueRows[1] will represent <tr> tag of table located at first index and find_all("span")[0] will give me <span> tag and '.string' will give me value

      # value.strip() - will remove space from start and end of the string.

     # find using attribute :

     value = storeValueRows[1].find("span", {"name":"spanId"})['class']
     print value
     # this will print spanclass
于 2016-10-20T05:38:11.177 回答
1
If tdd='<td class="abc"> 75</td>'
In Beautifulsoup 

if(tdd.has_attr('class')):
   print(tdd.attrs['class'][0])


Result:  abc
于 2020-06-17T16:40:41.643 回答