美文网首页
通过html内容取数据

通过html内容取数据

作者: 草木山川 | 来源:发表于2021-10-27 13:37 被阅读0次

response = requests.get(url)

# 获取响应内容

response = response.text

# 将响应内容转化为html

selector = etree.HTML(response)

# print(selector)

# 通过路径获取内容

for iin selector.xpath('//tr[@class="t_tr1"]'):

# i.xpath('td/text()'返回的是一个数组

    # print(i.xpath('td/text()'))

    datetime =int(i.xpath('td/text()')[0])

相关文章

网友评论

      本文标题:通过html内容取数据

      本文链接:https://www.haomeiwen.com/subject/zbfpaltx.html