python excel库下载_【python】2020高考院校库下载保存excel

[Python] 纯文本查看 复制代码import requests

from lxml import etree

import openpyxl

title = ['院校名称', '院校所在地', '教育主管部门', '院校类型', '学历层次', '满意度']

workbook = openpyxl.Workbook()

sheet = workbook.worksheets[0]

sheet.append(title)

def writefile(school, destination, party, schooltype, floattype, score):

for i in range(len(school)):

sheet.append([school[i], destination[i], party[i], schooltype[i], floattype[i], score[i]])

def replacet(who):

for i in range(len(who)):

who[i] = who[i].replace(' ', '').replace('\n', '')

return who

def get(url):

headers = {"User-Agent": "Mozilla/5.0 (Windows NT 6.1; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) "

"Chrome/78.0.3904.97 Safari/537.36", }

response = requests.get(url, headers=headers).text

html = etree.HTML(response, etree.HTMLParser())

school = html.xpath('//div/table/tr/td[1]/a/text()')

destination = html.xpath('//div/table/tr/td[2]/text()')

party = html.xpath('//div/table/tr/td[3]/text()')

schooltype = html.xpath('//div/table/tr/td[4]/text()')

floattype = html.xpath('//div/table/tr/td[5]/text()')

score = html.xpath('//div/table/tr/td[9]/a/text()')

school = replacet(school)

destination = replacet(destination)

party = replacet(party)

schooltype = replacet(schooltype)

floattype = replacet(floattype)

score = replacet(score)

writefile(school, destination, party, schooltype, floattype, score)

if __name__ == '__main__':

for p in range(0, 2820, 20):

print('第{}个开始'.format(p))

try:

get('https://gaokao.chsi.com.cn/sch/search--ss-on,searchType-1,option-qg,start-{}.dhtml'.format(p))

print('第{}个保存完成'.format(p))

except:

print('第{}个保存失败'.format(p))

workbook.save('2020高考高校信息库.xlsx')

workbook.close()

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值