爬虫代码已复制

S02 - http请求分析及头构造使用

1718093606阅读数:212
上一篇: S01 - requests库及lxml库入门
下一篇: S03 - lxml库进阶语法及解析练习
# coding=utf-8

import requests
from lxml import etree

url = 'http://www.spiderbuf.cn/playground/s02'

myheaders = {'User-Agent':'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/91.0.4472.164 Safari/537.36'}

html = requests.get(url, headers=myheaders).text
print(html)

f = open('02.html', 'w', encoding='utf-8')
f.write(html)
f.close()

root = etree.HTML(html)
trs = root.xpath('//tr')

f = open('data02.txt', 'w', encoding='utf-8')
for tr in trs:
    tds = tr.xpath('./td')
    s = ''
    for td in tds:
        # print(td.text)
        s = s + str(td.text) + '|'
    print(s)
    if s != '':
        f.write(s + '\n')

f.close()