1
のない私はエキス<tr>タグデータクラスやID
<tr class="TTRow">
<td>
<a class="tablebluelink" href="" target="_blank">517330</a></td>
<td class="TTRow_left">CMI</td>
<td>29 Jun 2017</td>
</tr>
美しいスープを使用してHTMLを次の中から日付を抽出しようとしている=私は、これは
r=urllib.urlopen('http://www.bseindia.com/corporates/Forth_Results.aspx?expandable=0').read()
soup=BeautifulSoup(r)
companies= soup.findAll("tr", class_= "TTRow")
i=0
for company in companies:
upcoming_company_results[i]=str(company.find("td",class_="TTRow_left").text)
date[i]=str(company.find("td").text)
i=i+1
を働くだろうと思った。しかし、それはクラスでテキストを提供します日付の代わりに日付[i]の "tablbluelink"。 日付を抽出する方法 "2017年6月29日"をフォームにします。
をこの回答を使用し、コンテンツを利用した://www.crummy。 com/software/BeautifulSoup/bs3/documentation.html#contents –