我是python数据报废的新手,并试图从kickstarter中删除数据。 我正在使用以下代码来废弃
中的位置数据我正在使用以下代码
test_page=requests.get('https://www.kickstarter.com/discover/advanced?term=security&sort=magic&seed=2425842&page=1')
test_pagetree= html.fromstring(test_page.content)
test_loc= test_pagetree.xpath('//[@id="projects_list"]/li/div/div/div/a/span')[0].text
并获得'列表索引超出范围'错误。
我使用谷歌浏览器来检查并获取上面元素的xpath。
答案 0 :(得分:0)
可以使用location-name
类选择位置元素,如下所示:
...
test_loc = test_pagetree.find_class('location-name')[0].text