python - Beautifulsoup 中的 find 函数在第一个列表中返回 None

标签 python beautifulsoup web-crawler scrape

我现在练习用 Beautifulsoup4 解析 HTML。 我在使用查找功能时遇到问题。 这是我的代码。

soup1 = BeautifulSoup(a,"html.parser")
tables1 = soup1.find('div', {'id':'auction_container'}).findAll('table')
for table in tables1:
if '매각기일' in table.get_text():
    clue1 = table.find('td', {'class': 'head_con center'})
    pro_clue1 = clue1.find('span', {'class':'bold'})
    pro_clue2 = clue1.find('span',{'class':'no'})
    clue2 = table.find('tr', {'valign': 'bottom'})
    print(clue2.find('span', {'class': 'num'}))

变量 a 的页面源代码太长,因此我在博客中编写了完整的脚本。你可以像这样获取脚本。 http://blog.naver.com/khm2963/220983094160 当我执行这段代码时,我得到了下面的输出

None
<span class="num"><span class="f20">2015</span>타경<span class="f20">2321</span></span>

当我在 clue2.find('span', {'class': 'num'}) 后面附加 .get_text () 函数时,就像 print (clue2.find('span', {'class': 'num'}).get_text()),我在下面遇到错误。

Traceback (most recent call last):
File "D:/python code/auction_crawl/test bs4.py", line 5895, in <module>
print(clue2.find('span', {'class': 'num'}).get_text())
AttributeError: 'NoneType' object has no attribute 'get_text'

如果我打印 print(clue2) 而不使用 .find('span', {'class': 'num'}) 我得到如下结果

<tr valign="bottom">
<td class="head_num left"><img alt="굿옥션로고" height="26" 
src="/img/common/top_logo.gif" width="100"><span class="logo_pid"></span>
</img>
</td>
<td class="head_con center">
<span class="bold">서울남부지방법원  본원 8계(02-2192-1338)</span> / 매각기일 : 
<span class="bold"><span class="no">2017.04.12(水)</span> <span class="no">
(10:00)</span>
</span></td>
</tr>
<tr valign="bottom">
<td class="head_num bold no left" style="width:190px;padding:10px 0 2px 
0;font-size:15px"><span class="num"><span class="f20">2015</span>타경<span 
class="f20">2321</span></span></td>
<td class="head_con center" style="padding-bottom:6px"><div>
<span class="ltblue"><img src="/img/icon/point_blue.gif" style="vertical-
align:middle"/></span> <span class="blue bold">서울남부지방법원  본원
</span>  <span class="ltblue"><img src="/img/icon/point_blue.gif" 
style="vertical-align:middle"/></span> 매각기일 : <span class="blue bold 
no">2017.04.12(水) (10:00)</span>  <span class="ltblue"><img 
src="/img/icon/point_blue.gif" style="vertical-align:middle"/></span> <span 
class="blue bold">경매 8계</span>(전화:02-2192-1338)</div>
</td>
</tr>

所以我将上面的 HTML 代码写入变量 d。并制作了如下代码。

d = ''' HTML code above  '''
soup4= BeautifulSoup(d,"html.parser")
clue = soup4.find('span', {'class': 'num'})
print(clue.get_text().strip())

当我激活上面的代码时,我得到了这样的响应2015타경2321。 这就是我要的。 我想从顶部代码中获取 2015타경2321 。我怎样才能得到它??

最佳答案

您可以验证您的 clue2.find('span', {'class': 'num'}) 是否有结果,如果有,则打印结果:

...
clue2number = clue2.find('span', {'class': 'num'})
if clue2number is not None:
    print (clue2number.get_text(strip=True))

哪些输出:

2015타경2321

关于python - Beautifulsoup 中的 find 函数在第一个列表中返回 None,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/43404782/

相关文章:

solr - 如何通过指定深度来抓取网站

api - 有没有一种方法可以获取给定 Reddit 子版 block 的所有帖子,而不仅仅是一个月以上的帖子?

python - 类型错误 : unorderable types: str() < int()

python - 使用特殊字符在python中定义函数

python - 找出 4 个数字,其总和为给定的数字

python - 获取一个国家的天气,地点 bs4

python - BS4 中出现奇怪的错误。 find_all() 返回 None

python - 从 Django 1.8 获取 TemplateDoesNotExist

python - 使用 Beautiful Soup 从网站抓取数据并在 jinja2 中显示

linux - 允许Wget只下载应用类型的PDF