其他分享
首页 > 其他分享> > 爬虫-扇贝字典

爬虫-扇贝字典

作者:互联网

import requests
from lxml import etree
for i in range(1,4):
    url = 'https://www.shanbay.com/wordlist/110521/232414/?page={}'.format(i)
    headers = {'user-agent': 'Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/74.0.3729.131 Safari/537.36' }
    response = requests.get(url,headers=headers).text
    # with open('shanbei.html','w',encoding='utf-8') as f:
    #     f.write(response)
    tree = etree.HTML(response)
    tr_list = tree.xpath('.//tr[@class="row"]')
    # print(len(tr_list))
    for tr in tr_list:
        word = tr.xpath('.//strong/text()')[0]
        # print(word)
        translate = tr.xpath('./td[@class="span10"]/text()')[0]
        infor = word + ':  ' + translate + '\n'
        with open('shanbei.txt','a',encoding='utf-8') as fp:
            fp.write(infor)

标签:xpath,word,text,扇贝,tr,爬虫,list,response,字典
来源: https://blog.csdn.net/weixin_42766128/article/details/101305433