如何从' a'中获取文本。使用scrapy在python中的标签?

时间:2017-10-12 08:26:23

标签: python scrapy

<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;会议中心从上面使用scrapy进行python?

1 个答案:

答案 0 :(得分:0)

您可以查看scrapy selectors

要实现页面上所有锚标记的所需,您可以使用:

link_text_list = response.selector.xpath('//a/text()').extract()