1
我試圖用python和lxml來抓取這個網站。 它的工作在我的本地機器上運行,但是當我嘗試將它部署在我的服務器上並運行腳本時,我遇到了空白問題。 網址:在HTML http://www.samsungapps.com/topApps/topAppsDetail.as?productId=G00000467050&listYN=Ypython和lxml的空白問題
問題的一部分:
<tr>
<th>Version</th>
<td>
1.0.0 (14.02.2011)
</td>
</tr>
我覺得這是我的服務器的配置的問題。 有沒有人知道我錯過了什麼?
在此先感謝
編輯:
html = seite.read()
seite.close()
tree = etree.parse(StringIO.StringIO(html), parser)
xpath = "//div[contains(@class,'detail-view')]/h4/text()"
name = tree.xpath(xpath)
xpath = "//div[contains(@class,'detail-view')]/table/tbody/tr[2]/td/text()"
cat = tree.xpath(xpath)
xpath = "//div[contains(@class,'detail-view')]/table/tbody/tr[3]/td/text()"
typ = tree.xpath(xpath)
xpath = "//div[contains(@class,'detail-view')]/table/tbody/tr[4]/td/text()"
version = tree.xpath(xpath)
print name[0].encode("utf-8")
print cat[0].encode("utf-8")
print typ[0].encode("utf-8")
print version[0].encode("utf-8")
你能給出有關錯誤的更多細節? – yanjost 2011-02-14 14:10:39
它本身並不是一個錯誤。 它只是將空格輸出到我的字符串中。 在我的本地機器上它自動剝離空白 – suddenbreak 2011-02-14 14:32:33