给定 URL http://www.smartmoney.com/quote/FAST/?story=financials&timewindow=1&opt=YB&isFinprint=1&framework.view=smi_emptyView,您将如何捕获和打印整行数据的内容?
例如,要获得类似于“Cash & Short Term Investments 144,841 169,760 189,252 86,743 57,379”的输出需要什么?或者类似“财产、厂房和设备 - 总额 725,104 632,332 571,467 538,805 465,493”?
我已经通过网站http://www.techchorus.net/web-scraping-lxml了解了 Xpath 的基础知识。然而,Xpath 语法在很大程度上对我来说仍然是个谜。
我已经在 BeautifulSoup 中成功地做到了这一点。我喜欢 BeautifulSoup 不需要我知道文件的结构这一事实——它只查找包含我搜索的文本的元素。不幸的是,BeautifulSoup 对于必须执行数千次的脚本来说太慢了。我在 BeautifulSoup 中的任务的源代码是(title_input 等于“现金和短期投资”):
page = urllib2.urlopen (url_local)
soup = BeautifulSoup (page)
soup_line_item = soup.findAll(text=title_input)[0].parent.parent.parent
list_output = soup_line_item.findAll('td') # List of elements
那么 lxml 中的等效代码是什么?
编辑 1:我第一次发布时,这些 URL 被隐藏了。我现在已经解决了。
编辑 2:我添加了基于 BeautifulSoup 的解决方案,以阐明我想要做什么。
编辑 3:+10 为您的解决方案扎根。为了将来有同样问题的开发人员的利益,我在这里发布了一个对我有用的快速而肮脏的脚本:
#!/usr/bin/env python
import urllib
import lxml.html
url = 'balancesheet.html'
result = urllib.urlopen(url)
html = result.read()
doc = lxml.html.document_fromstring(html)
x = doc.xpath(u'.//th[div[text()="Cash & Short Term Investments"]]/following-sibling::td/text()')
print x