<div class="breadcrumbs pt10 pb10">
<a>Location :</a>
"National Harbor ,
Maryland"
<br>
<a href="#" class="type">Venue : </a>
"Gaylord National Resort & Convention Center "
</div>
如何获取文本National Harbor,Maryland,Gaylord National Resort&amp;上面的会议中心在python中使用scrapy吗?
我应用了这段代码..“response.selector.xpath('// div [@ class =”breadcrumbs pt10 pb10“] / a / text()')。extract()”....但是o / p i'我这样......“[u'Location:',u'Venue:']”。有人可以帮忙吗? Thanx提前!
答案 0 :(得分:0)
1)您可以直接使用response.xpath
2)//div[@class='breadcrumbs pt10 pb10']/text()
会有所帮助