[python] Python : BeautifulSoup-이름 속성을 기반으로 속성 값 가져 오기

예를 들어 이름을 기반으로 속성 값을 인쇄하고 싶습니다.

<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'. 이름이 BeatifulSoup에서 사용되기 때문에 키워드 인수로 사용할 수 없기 때문이라고 생각합니다.



답변

매우 간단합니다. 다음을 사용하십시오.

>>> 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'

명확하지 않은 내용이 있으면 의견을 남겨주세요.


답변

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


답변

파티에 6 년 늦었지만 html 요소의 태그 속성 값 을 추출하는 방법을 찾고 있습니다 .

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

“addressLocality”를 원합니다. 나는 계속 여기로 돌아 왔지만 대답은 실제로 내 문제를 해결하지 못했습니다.

결국 어떻게 할 수 있었습니까?

>>> 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'}

dict이기 때문에 keys및 ‘values’를 사용할 수도 있습니다.

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

다른 사람에게 도움이되기를 바랍니다!


답변

다음 작업 :

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']


답변

theharshest의 대답이 최선의 해결책이지만, 당신이 직면 한 문제는 Beautiful Soup의 Tag 객체가 파이썬 사전처럼 작동한다는 사실과 관련이 있습니다. ‘name’속성이없는 태그에서 tag [ ‘name’]에 액세스하면 KeyError가 발생합니다.


답변

이 솔루션을 시도해 볼 수도 있습니다.

테이블의 범위에 기록 된 값을 찾으려면

htmlContent


<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>

파이썬 코드


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


답변

If tdd='<td class="abc"> 75</td>'
In Beautifulsoup

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


Result:  abc