错误处理:使用 BeautifulSoup 按类检索元素
使用 Beautifulsoup 解析具有“class”属性的 HTML 元素时,可能会出现错误。当尝试使用 [“class”] 语法检索“class”属性时,会出现此错误。例如,下面的代码演示了这一点:
import BeautifulSoup sdata = '...' soup = BeautifulSoup(sdata) mydivs = soup.findAll('div') for div in mydivs: if (div["class"] == "stylelistrow"): print div
执行时,脚本可能会终止,并出现类似以下错误:
File "./beautifulcoding.py", line 130, in getlanguage if (div["class"] == "stylelistrow"): File "/usr/local/lib/python2.6/dist-packages/BeautifulSoup.py", line 599, in __getitem__ return self._getAttrMap()[key] KeyError: 'class'
解决方案:使用 find_all
要解决此错误,可以修改代码以利用 BeautifulSoup 的 find_all 方法来细化元素搜索与特定的班级。以下修改后的代码片段演示了这一点:
mydivs = soup.find_all("div", {"class": "stylelistrow"})
通过使用 find_all 方法并指定包含“class”属性作为键和所需的类值作为值的字典,脚本可以准确地检索元素指定的类。该解决方案有效地解决了错误,并能够检索具有所需类属性的元素。
以上是为什么 BeautifulSoup 在按类检索元素时会抛出 KeyError 以及如何修复它?的详细内容。更多信息请关注PHP中文网其他相关文章!