예를 들어 이름을 기반으로 속성 값을 인쇄하고 싶습니다.
<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에서 사용되기 때문에 키워드 인수로 사용할 수 없기 때문이라고 생각합니다.