このページの特定の要素からテキスト データをスクレイピングしようとしています (scraperwiki を使用)
import requests
from lxml import html
response = requests.get(http://portlandmaps.com/detail.cfm?action=Assessor&propertyid=R246274)
tree = html.fromstring(response.content)
owner = tree.xpath('/html/body/div[2]/table[1]/tbody/tr[11]/td[2]')
print owner.text
そして、scraperwiki コンソールは以下を返します:
AttributeError: 'list' object has no attribute 'text'
Google Chrome を使用して XPath を見つけましたが、リクエストは Chrome と同じ標準を使用していると思います