• 大小: 6KB
    文件类型: .py
    金币: 2
    下载: 2 次
    发布日期: 2021-01-03
  • 语言: Python
  • 标签: 爬虫  python  

资源简介

随着高考的落幕,大家也该估分选大学,突然发现中国教育在线的估分选大学系统开始收费了(3G时代是免费的),所以自己就写了爬虫获取高校各个专业历年在河南的录取分数线、排名,以及大学的基本信息。

资源截图

代码片段和文件信息

import requests

import pandas as pd

#保存路径
filepath = r“F:\资料\python爬虫“ + “\\“

#生成初始表格
excel_head = [‘学校‘ ‘编号‘ ‘ 学校排名‘ ‘时间‘ ‘ 专业‘ ‘ 录取最高分‘ ‘ 录取最低分‘ ‘ 平均分‘ ‘ 录取名次‘ ‘ 录取批次 ‘ ‘省份编号‘ ‘ 省份‘ ‘ 城市‘ ‘ 985‘ ‘ 211 ‘ ‘双一流‘‘学校类型‘]
excel_file = pd.Dataframe(columns=excel_head)


#建立输出txt文
data_file=open(filepath+“school_major2.txt“ ‘w+‘ encoding=‘utf-8‘) 

#查询年份
years = 2019

#考试省份


# major = “信息与计算科学“   #input(“请查询输入专业:“)   


#浏览器的信息
headers={
    # ‘Accept‘:‘application/json text/plain */*‘
    # ‘Accept-Encoding‘:‘gzip deflate sdch br‘
    # ‘Accept-Language‘:‘zh-CNzh;q=0.8‘
    # ‘Connection‘:‘keep-alive‘
    # ‘Host‘:‘static-data.eol.cn‘
    # ‘Origin‘:‘https://gkcx.eol.cn‘
    # ‘Referer‘:‘https://gkcx.eol.cn/school/459/provincelin

评论

共有 条评论