在Beautifulsoup中查找函数在第一个列表中返回无

时间:2017-04-14 03:28:17

标签: python beautifulsoup web-crawler scrape

我现在练习使用Beautifulsoup4解析HTML。 我使用find函数遇到问题。 这是我的代码。

perl examples/01-getting-started.pl

变量a是一个太长的pagesource,所以我在我的博客中写了完整的脚本。您可以像这样获得脚本。 http://blog.naver.com/khm2963/220983094160 当我执行此代码时,我得到

以下的输出
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'}))

当我将None <span class="num"><span class="f20">2015</span>타경<span class="f20">2321</span></span> 函数添加到.get_text () clue2.find('span', {'class': 'num'})后面时,我收到了错误。

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

所以我将HTML代码改为d。并制作了如下代码。

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

当我激活上面的代码时,我收到了像d = ''' HTML code above ''' soup4= BeautifulSoup(d,"html.parser") clue = soup4.find('span', {'class': 'num'}) print(clue.get_text().strip()) 这样的回复。 这就是我要的。 我想从顶部代码中获取2015타경2321。我怎么能得到它?

1 个答案:

答案 0 :(得分:1)

您只需验证clue2.find('span', {'class': 'num'})是否有结果,如果有,请打印结果:

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

哪个输出:

  

2015타경2321