AttributeError - 网页抓取 - Python - Selenium

辛达

我需要从网上抓取下表,但我无法用“find_all”函数解决这个问题。PyCharm 总是说:

AttributeError: 'NoneType' object has no attribute 'find_all'

我不知道出了什么问题。尝试使用 table.find_all("tr") 或 table.find_all('tr') 字符和下一个属性,如 table.find_all("tr", attrs={"class": "table table-export"}) 和下一个选项,没有任何效果。请你能告诉我我做错了什么吗?

桌子:

<div class="table-options">
    <table class="table table-export">
                <thead>
                <tr>
                    <!-- ngIf: ActuallyPoints && ActuallyPoints.name == 'AXB' --><th ng-if="currentRole &amp;&amp; currentRole.name == 'AXB'" class="id check">
                        <label ng-click="selectAll()"><input disabled="" id="select-all" type="checkbox" ng-model="all" class="valid value-ng">All</label>
                    </th><!-- end ngIf: currentRole && currentRole.name == 'AXB' -->
                    <th>AAA</th>
                    <th>BBB</th>
                    <th>CCC</th>
        </tr>
                </thead>
                <tbody>
<!-- ngRepeat: x in ErrorStatus --><tr ng-repeat="x in ErrorStatus" class="random-id">
                    <!-- ngIf: currentRole && currentRole.name == 'AXB' --><td ng-if="currentRole &amp;&amp; currentRole.name == 'AXB'" class="random-id">
                        <input type="checkbox" ng-model="x.checked" ng-change="selectOne(x)" class="valid value-ng">
                    </td><!-- end ngIf: currentRole && currentRole.name == 'AXB' -->
                    <td class="pax">111</td>
                    <td class="pax">222</td>
                    <td class="pax">333</td>
                    </td>
                </tr><!-- end ngRepeat: x in ErrorStatus -->
                </tbody>
            </table>
        </div>

代码:

import lxml
from urllib.request import urlopen
from bs4 import BeautifulSoup

url = 'xxx'
website = request.urlopen(url).read()

soup = BeautifulSoup(website, "lxml")

table = soup.find("table", attrs={"class": "table table-export"})
rows = table.find_all('tr')

非常感谢。

画家

我将无法提供解决方案,因为没有链接,但对错误的解释非常简单:

AttributeError: 'NoneType' object has no attribute 'find_all'

让我们看看您.find_all在代码中使用的位置:

rows = table.find_all('tr')

考虑到解释器所说的,这段代码实际上是这样的:

rows = None.find_all('tr')

换句话说,您的变量table等于None. 因此,您的问题在这里:

table = soup.find("table", attrs={"class": "table table-export"}) # returns None

在人类语言中,您试图在您的 html 中找到一些表格,然后将其存储到 variable table,但soup.find()无法使用您提供的说明找到该元素,因此返回None. 你没有注意到它并试图调用None.find_all(),但None没有这个方法。

这就是您收到此错误的原因。如果你不能分享链接,请自己重新检查这篇文章,因为它不起作用:

table = soup.find("table", attrs={"class": "table table-export"}) # returns None

UPD:首先,尝试打印变量soup并检查表格是否存在,因为您在浏览器中看到的 html 和您通过请求收到的 html 可能完全不同:

soup = BeautifulSoup(website, "lxml")
print(soup)

本文收集自互联网,转载请注明来源。

如有侵权,请联系 [email protected] 删除。

编辑于
0

我来说两句

0 条评论
登录 后参与评论

相关文章