1
どのように解析するかわからないレイアウトを持つHTMLテキストファイルの解析には助けが必要です。これまでPython解析:非標準レイアウト用のhtmlテストファイルからデータを引き出す
コード:私は何をしようとしている
import urllib,os, urllib2, webbrowser, StringIO, re
from BeautifulSoup import BeautifulSoup
from urllib import urlopen
urlfile = open('output.txt','r')
html = urlfile
soup = BeautifulSoup(''.join(html))
print soup.prettify()
table = soup.find('table', id="dgProducts__ctl2_lblCountry")
rows = table.findAll('<span id="dgProducts__ctl2_lblCountry">')
for tr in rows:
cols = tr.findAll('td')
for td in cols:
text = ''.join(td.find(text=True))
print text+"|",
print
: 私は.htmlをテキストファイルからデータを抽出し、それが次の形式で提示しているために探しています:
Header Row: Country Company Name Company Product Name Status
Data Row(s): 1 Ace Desktop Ace Vision Gold
省略の.htmlファイルのデータ構造:
</tr><tr bgcolor="White">
<td><font color="#330099" size="1">
<span><font size="2">
<input id="dgProducts__ctl12_ckCompare" type="checkbox" name="dgProducts:_ctl12:ckCompare" onclick="checkSelected(this.form, this);" />
</font></span>
</font></td><td><font color="#330099" size="1">
<span id="dgProducts__ctl12_lblModel1"><font size="2">
<a href='ProductDisplay.aspx?return=pm&action=view&search=true&productid=4592&ProductType=1&epeatcountryid=1'>Ace Vision 7HS</a></font></span>
</font></td><td><font color="#330099" size="1">
<span id="dgProducts__ctl12_lblCountry">United States</span>
</font></td><td><font color="#330099" size="1">
<span id="dgProducts__ctl12_lblProductCategory1"><font size="2">Desktops</font></span>
</font></td><td><font color="#330099" size="1">
<span id="dgProducts__ctl12_lblRating1"><font size="2">Gold</font></span>
</font></td><td><font color="#330099" size="1">
<span id="dgProducts__ctl12_lblPoints1">18</span>
</font></td><td><font color="#330099" size="1">
<span id="dgProducts__ctl12_lblEnergyStar">5.0</span>
</font></td><td><font color="#330099" size="1">
<span id="dgProducts__ctl12_lblMonitorType1"><font size="2"></font></span>
</font></td><td><font color="#330099" size="1">
<span id="dgProducts__ctl12_lblMonitorSize"><font size="2"></font></span>
</font></td><td><font color="#330099" size="1">
<span id="dgProducts__ctl12_lblListingDate1"><font size="2">3/16/2010</font></span>
</font></td><td><font color="#330099" size="1">
<span id="dgProducts__ctl12_lblStatus"><font size="2">Active</font></span>
</font></td><td><font color="#330099" size="1">
<span id="dgProducts__ctl12_lblExceptions" align="center"><a href='#' onclick=ShowExceptions('Exceptions.aspx?id=4592');>
<img src='http://www.epeat.net/Images/inform.gif' title='Click to view exceptions' alt='Click to view exceptions' border='0'></a></span>
</font></td>
'html.read()'の代わりに ''' .join(html)'を見つけました。まあ、それぞれ自分自身に:) –
"これまでのコード" ... "私がやろうとしていること" ...そして?何がうまくいかない?あなたはどんな問題を抱えていますか?どんな助けが必要ですか? –