├── GM11.py ├── README.md ├── SEU_RecommenderSystem ├── __init__.py ├── __pycache__ │ ├── __init__.cpython-38.pyc │ ├── settings.cpython-38.pyc │ ├── urls.cpython-38.pyc │ └── wsgi.cpython-38.pyc ├── asgi.py ├── settings.py ├── testdb.py ├── urls.py └── wsgi.py ├── calculate_college.py ├── crawler ├── 16-19shandong.csv ├── 16-20shandong.csv ├── 17-19录取分数爬虫 │ ├── 09118101清华大学.py │ ├── 09118102北京大学.py │ ├── 09118103中国人民大学.py │ ├── 09118104北京交通大学.py │ ├── 09118105石河子大学.py │ ├── 09118106北京航空航天大学.py │ ├── 09118107北京理工大学.py │ ├── 09118108北京科技大学.py │ ├── 09118109北京化工大学.py │ ├── 09118110北京邮电大学.py │ ├── 09118111北京联合大学.py │ ├── 09118112北京林业大学.py │ ├── 09118113中国传媒大学.py │ ├── 09118114中央民族大学.py │ ├── 09118115北京师范大学.py │ ├── 09118116南京师范大学.py │ ├── 09118117对外经济贸易大学.py │ ├── 09118118北方工业大学.py │ ├── 09118119北京外国语大学.py │ ├── 09118120中国地质大学(北京).py │ ├── 09118121中国矿业大学(北京).py │ ├── 09118122新疆大学.py │ ├── 09118124浙江理工大学.py │ ├── 09118125中央财经大学.py │ ├── 09118126华北电力大学.py │ ├── 09118127北京体育大学.py │ ├── 09118128华东政法大学.py │ ├── 09118129燕山大学.py │ ├── 09118130首都师范大学.py │ ├── 09118131南通大学.py │ ├── 09118132上海外国语大学.py │ ├── 09118133复旦大学.py │ ├── 09118134华东师范大学.py │ ├── 09118135上海大学.py │ ├── 09118136东华大学.py │ ├── 09118137北京工商大学.py │ ├── 09118138华东理工大学.py │ ├── 09118139同济大学.py │ ├── 09118140上海交通大学.py │ ├── 09118142南京邮电大学.py │ ├── 09118143重庆大学.py │ ├── 09118144西南大学.py │ ├── 09118145南京工业大学.py │ ├── 09118201太原理工大学.py │ ├── 09118202内蒙古大学.py │ ├── 09118203大连理工大学.py │ ├── 09118204广州大学.py │ ├── 09118205辽宁大学.py │ ├── 09118206大连海事大学.py │ ├── 09118207吉林大学.py │ ├── 09118208东北师范大学.py │ ├── 09118209延边大学.py │ ├── 09118210哈尔滨工业大学.py │ ├── 09118211汕头大学.py │ ├── 09118212东北农业大学.py │ ├── 09118213东北林业大学.py │ ├── 09118215南京大学.py │ ├── 09118216东南大学.py │ ├── 09118218苏州大学.py │ ├── 09118219南京师范大学.py │ ├── 09118222河海大学.py │ ├── 09118223南京理工大学.py │ ├── 09118224江南大学.py │ ├── 09118225南京农业大学.py │ ├── 09118226南京航空航天大学.py │ ├── 09118227浙江大学.py │ ├── 09118228中国科学技术大学.py │ ├── 09118229安徽大学.py │ ├── 09118230合肥工业大学.py │ ├── 09118231厦门大学.py │ ├── 09118232福州大学.py │ ├── 09118233南昌大学.py │ ├── 09118234山东大学.py │ ├── 09118236中国石油大学.py │ ├── 09118238武汉大学.py │ ├── 09118239华中科技大学.py │ ├── 09118240浙江工业大学.py │ ├── 09118241湖北大学.py │ ├── 09118242华中师范大学.py │ ├── 09118243华中农业大学.py │ ├── 09118244中国地质大学(武汉).py │ ├── 09118245湖南大学.py │ ├── 61518110中南大学.py │ ├── 61518122湖南师范大学.py │ ├── 61518125国防科技大学.py │ ├── 61518126福建农林大学.py │ ├── 61518205暨南大学.py │ ├── 61518207华南理工大学.py │ ├── 61518210上海师范大学.py │ ├── 61518217广西大学.py │ ├── 61518218四川大学.py │ ├── 61518229西南交通大学.py │ ├── 61518309西南财经大学.py │ ├── 61518314四川农业大学.py │ ├── 61518315青岛大学.py │ ├── 61518319贵州大学.py │ ├── 61518407西北大学.py │ ├── 61518420西安交通大学.py │ ├── 61518421武汉科技大学.py │ ├── 61518422杭州电子科技大学.py │ ├── 61518424长安大学.py │ ├── 61518426华侨大学.py │ ├── 61518428西安电子科技大学.py │ └── 61518431兰州大学.py ├── 2020shandong.csv ├── location2020.csv ├── syy_crawler.py └── 一分一段表.csv ├── db.sqlite3 ├── get_16-20.py ├── get_pre.py ├── major_rank_change.py ├── manage.py ├── read_from_csv.py ├── recommend ├── __init__.py ├── __pycache__ │ ├── __init__.cpython-38.pyc │ ├── admin.cpython-38.pyc │ ├── apps.cpython-38.pyc │ ├── models.cpython-38.pyc │ ├── urls.cpython-38.pyc │ └── views.cpython-38.pyc ├── admin.py ├── apps.py ├── models.py ├── tests.py ├── urls.py └── views.py ├── splitter └── splitter.py ├── static ├── recommend │ ├── _first-steps.url │ ├── _open-generator.url │ ├── ajax-email.php │ ├── assets │ │ ├── img │ │ │ ├── appstore.jpg │ │ │ ├── background │ │ │ │ ├── img-1.jpg │ │ │ │ ├── img-15.jpg │ │ │ │ ├── img-27.jpg │ │ │ │ ├── img-68.jpg │ │ │ │ ├── img-73.jpg │ │ │ │ ├── img-75.jpg │ │ │ │ ├── img-82.jpg │ │ │ │ ├── img-83.jpg │ │ │ │ ├── img-89.jpg │ │ │ │ └── img-95.jpg │ │ │ ├── bg.jpg │ │ │ ├── brand-68-adidas.png │ │ │ ├── brand-68-apple.png │ │ │ ├── brand-68-audi.png │ │ │ ├── brand-68-bbc.png │ │ │ ├── brand-68-canon.png │ │ │ ├── brand-68-coca-cola.png │ │ │ ├── brand-68-facebook.png │ │ │ ├── brand-68-google.png │ │ │ ├── brand-68-greenpeace.png │ │ │ ├── brand-68-microsoft.png │ │ │ ├── brand-68-national-geographic.png │ │ │ ├── brand-68-nbc.png │ │ │ ├── brand-68-nike.png │ │ │ ├── brand-68-playstation.png │ │ │ ├── brand-68-reebok.png │ │ │ ├── brand-68-sony.png │ │ │ ├── brand-68-vimeo.png │ │ │ ├── brand-68-warner-bros.png │ │ │ ├── gallery-75-1.jpg │ │ │ ├── gallery-75-2.jpg │ │ │ ├── gallery-75-3.jpg │ │ │ ├── gallery-75-4.jpg │ │ │ ├── gallery-75-5.jpg │ │ │ ├── gallery-75-6.jpg │ │ │ ├── gallery-75-7.jpg │ │ │ ├── googleplay.jpg │ │ │ ├── icon-2.png │ │ │ ├── image-89-1.jpg │ │ │ ├── image-89-2.jpg │ │ │ ├── iphone-73.png │ │ │ ├── iphone-82-1.png │ │ │ ├── iphone-82-2.png │ │ │ ├── iphone-82-3.png │ │ │ ├── iphone-82-4.png │ │ │ ├── watch-26-1.png │ │ │ └── watch-26-2.png │ │ └── svg │ │ │ ├── icons.svg │ │ │ ├── video-icon-dark.svg │ │ │ └── video-icon.svg │ ├── css │ │ ├── slides.css │ │ └── slides.min.css │ ├── js │ │ ├── plugins.js │ │ ├── slides.js │ │ ├── slides.min.js │ │ └── swiper.min.js │ ├── manual │ │ └── manual.url │ ├── readme first.txt │ ├── scss │ │ ├── colors.scss │ │ ├── dialog.scss │ │ ├── flex.scss │ │ ├── framework.scss │ │ ├── grid.scss │ │ ├── layout.scss │ │ ├── mixins.scss │ │ ├── plumber.scss │ │ ├── reset.scss │ │ ├── slides.scss │ │ ├── typography.scss │ │ ├── useful-classes.scss │ │ └── variables.scss │ └── video │ │ └── bg.mp4 └── return │ ├── _first-steps.url │ ├── _open-generator.url │ ├── ajax-email.php │ ├── assets │ ├── img │ │ ├── appstore.jpg │ │ ├── background │ │ │ ├── bg.jpg │ │ │ ├── img-27.jpg │ │ │ ├── img-68.jpg │ │ │ ├── img-73.jpg │ │ │ ├── img-75.jpg │ │ │ ├── img-82.jpg │ │ │ ├── img-83.jpg │ │ │ ├── img-89.jpg │ │ │ └── img-95.jpg │ │ ├── brand-68-adidas.png │ │ ├── brand-68-apple.png │ │ ├── brand-68-audi.png │ │ ├── brand-68-bbc.png │ │ ├── brand-68-canon.png │ │ ├── brand-68-coca-cola.png │ │ ├── brand-68-facebook.png │ │ ├── brand-68-google.png │ │ ├── brand-68-greenpeace.png │ │ ├── brand-68-microsoft.png │ │ ├── brand-68-national-geographic.png │ │ ├── brand-68-nbc.png │ │ ├── brand-68-nike.png │ │ ├── brand-68-playstation.png │ │ ├── brand-68-reebok.png │ │ ├── brand-68-sony.png │ │ ├── brand-68-vimeo.png │ │ ├── brand-68-warner-bros.png │ │ ├── gallery-75-1.jpg │ │ ├── gallery-75-2.jpg │ │ ├── gallery-75-3.jpg │ │ ├── gallery-75-4.jpg │ │ ├── gallery-75-5.jpg │ │ ├── gallery-75-6.jpg │ │ ├── gallery-75-7.jpg │ │ ├── googleplay.jpg │ │ ├── icon-2.png │ │ ├── image-89-1.jpg │ │ ├── image-89-2.jpg │ │ ├── iphone-73.png │ │ ├── iphone-82-1.png │ │ ├── iphone-82-2.png │ │ ├── iphone-82-3.png │ │ ├── iphone-82-4.png │ │ ├── watch-26-1.png │ │ ├── watch-26-2.png │ │ ├── 上海交通大学.jpg │ │ ├── 上海外国语大学.jpg │ │ ├── 上海大学.jpg │ │ ├── 上海财经大学.jpg │ │ ├── 东北农业大学.jpg │ │ ├── 东北师范大学.jpg │ │ ├── 东北林业大学.jpg │ │ ├── 东华大学.jpg │ │ ├── 东南大学.jpg │ │ ├── 中南大学.jpg │ │ ├── 中南财经政法大学.jpg │ │ ├── 中国人民大学.jpg │ │ ├── 中国传媒大学.jpg │ │ ├── 中国农业大学.jpg │ │ ├── 中国政法大学.jpg │ │ ├── 中国海洋大学.jpg │ │ ├── 中国矿业大学.jpg │ │ ├── 中国科学技术大学.jpg │ │ ├── 中国药科大学.jpg │ │ ├── 中央民族大学.jpg │ │ ├── 中央财经大学.jpg │ │ ├── 云南大学.jpg │ │ ├── 兰州大学.jpg │ │ ├── 内蒙古大学.jpg │ │ ├── 北京中医药大学.jpg │ │ ├── 北京交通大学.jpg │ │ ├── 北京体育大学.jpg │ │ ├── 北京化工大学.jpg │ │ ├── 北京外国语大学.jpg │ │ ├── 北京大学.jpg │ │ ├── 北京师范大学.jpg │ │ ├── 北京林业大学.jpg │ │ ├── 北京理工大学.jpg │ │ ├── 北京科技大学.jpg │ │ ├── 北京航空航天大学.jpg │ │ ├── 北京邮电大学.jpg │ │ ├── 华东师范大学.jpg │ │ ├── 华东理工大学.jpg │ │ ├── 华中农业大学.jpg │ │ ├── 华中师范大学.jpg │ │ ├── 华中科技大学.jpg │ │ ├── 华北电力大学.jpg │ │ ├── 华南师范大学.jpg │ │ ├── 华南理工大学.jpg │ │ ├── 南京农业大学.jpg │ │ ├── 南京大学.jpg │ │ ├── 南京工业大学.jpg │ │ ├── 南京师范大学.jpg │ │ ├── 南京理工大学.jpg │ │ ├── 南京航空航天大学.jpg │ │ ├── 南京财经大学.jpg │ │ ├── 南昌大学.jpg │ │ ├── 南通大学.jpg │ │ ├── 厦门大学.jpg │ │ ├── 合肥工业大学.jpg │ │ ├── 吉林大学.jpg │ │ ├── 同济大学.jpg │ │ ├── 哈尔滨工业大学.jpg │ │ ├── 哈尔滨工程大学.jpg │ │ ├── 四川农业大学.jpg │ │ ├── 四川大学.jpg │ │ ├── 复旦大学.jpg │ │ ├── 大连海事大学.jpg │ │ ├── 大连理工大学.jpg │ │ ├── 天津医科大学.jpg │ │ ├── 天津大学.jpg │ │ ├── 太原理工大学.jpg │ │ ├── 安徽大学.jpg │ │ ├── 对外经济贸易大学.jpg │ │ ├── 山东大学.jpg │ │ ├── 广西大学.jpg │ │ ├── 延边大学.jpg │ │ ├── 新疆大学.jpg │ │ ├── 暨南大学.jpg │ │ ├── 武汉大学.jpg │ │ ├── 武汉理工大学.jpg │ │ ├── 江南大学.jpg │ │ ├── 河海大学.jpg │ │ ├── 浙江大学.jpg │ │ ├── 清华大学.jpg │ │ ├── 湖南大学.jpg │ │ ├── 湖南师范大学.jpg │ │ ├── 电子科技大学.jpg │ │ ├── 石河子大学.jpg │ │ ├── 福州大学.jpg │ │ ├── 苏州大学.jpg │ │ ├── 西北农林科技大学.jpg │ │ ├── 西北工业大学.jpg │ │ ├── 西南交通大学.jpg │ │ ├── 西南财经大学.jpg │ │ ├── 西安交通大学.jpg │ │ ├── 西安电子科技大学.jpg │ │ ├── 贵州大学.jpg │ │ ├── 辽宁大学.jpg │ │ ├── 郑州大学.jpg │ │ ├── 重庆大学.jpg │ │ ├── 长安大学.jpg │ │ └── 陕西师范大学.jpg │ └── svg │ │ ├── icons.svg │ │ ├── video-icon-dark.svg │ │ └── video-icon.svg │ ├── css │ ├── slides.css │ └── slides.min.css │ ├── js │ ├── plugins.js │ ├── slides.js │ ├── slides.min.js │ └── swiper.min.js │ ├── manual │ └── manual.url │ ├── readme first.txt │ └── scss │ ├── colors.scss │ ├── dialog.scss │ ├── flex.scss │ ├── framework.scss │ ├── grid.scss │ ├── layout.scss │ ├── mixins.scss │ ├── plumber.scss │ ├── reset.scss │ ├── slides.scss │ ├── typography.scss │ ├── useful-classes.scss │ └── variables.scss └── templates └── recommend ├── news.html ├── pre_table.html ├── results.html ├── return.html ├── table.html ├── test.html └── welcome.html /GM11.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eshoyuan/GaokaoRecommend/HEAD/GM11.py -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eshoyuan/GaokaoRecommend/HEAD/README.md -------------------------------------------------------------------------------- /SEU_RecommenderSystem/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /SEU_RecommenderSystem/__pycache__/__init__.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eshoyuan/GaokaoRecommend/HEAD/SEU_RecommenderSystem/__pycache__/__init__.cpython-38.pyc -------------------------------------------------------------------------------- /SEU_RecommenderSystem/__pycache__/settings.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eshoyuan/GaokaoRecommend/HEAD/SEU_RecommenderSystem/__pycache__/settings.cpython-38.pyc -------------------------------------------------------------------------------- /SEU_RecommenderSystem/__pycache__/urls.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eshoyuan/GaokaoRecommend/HEAD/SEU_RecommenderSystem/__pycache__/urls.cpython-38.pyc -------------------------------------------------------------------------------- /SEU_RecommenderSystem/__pycache__/wsgi.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eshoyuan/GaokaoRecommend/HEAD/SEU_RecommenderSystem/__pycache__/wsgi.cpython-38.pyc -------------------------------------------------------------------------------- /SEU_RecommenderSystem/asgi.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eshoyuan/GaokaoRecommend/HEAD/SEU_RecommenderSystem/asgi.py -------------------------------------------------------------------------------- /SEU_RecommenderSystem/settings.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eshoyuan/GaokaoRecommend/HEAD/SEU_RecommenderSystem/settings.py -------------------------------------------------------------------------------- /SEU_RecommenderSystem/testdb.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eshoyuan/GaokaoRecommend/HEAD/SEU_RecommenderSystem/testdb.py -------------------------------------------------------------------------------- /SEU_RecommenderSystem/urls.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eshoyuan/GaokaoRecommend/HEAD/SEU_RecommenderSystem/urls.py -------------------------------------------------------------------------------- /SEU_RecommenderSystem/wsgi.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eshoyuan/GaokaoRecommend/HEAD/SEU_RecommenderSystem/wsgi.py -------------------------------------------------------------------------------- /calculate_college.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eshoyuan/GaokaoRecommend/HEAD/calculate_college.py -------------------------------------------------------------------------------- /crawler/16-19shandong.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eshoyuan/GaokaoRecommend/HEAD/crawler/16-19shandong.csv -------------------------------------------------------------------------------- /crawler/16-20shandong.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eshoyuan/GaokaoRecommend/HEAD/crawler/16-20shandong.csv -------------------------------------------------------------------------------- /crawler/17-19录取分数爬虫/09118101清华大学.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eshoyuan/GaokaoRecommend/HEAD/crawler/17-19录取分数爬虫/09118101清华大学.py -------------------------------------------------------------------------------- /crawler/17-19录取分数爬虫/09118102北京大学.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eshoyuan/GaokaoRecommend/HEAD/crawler/17-19录取分数爬虫/09118102北京大学.py -------------------------------------------------------------------------------- /crawler/17-19录取分数爬虫/09118103中国人民大学.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eshoyuan/GaokaoRecommend/HEAD/crawler/17-19录取分数爬虫/09118103中国人民大学.py -------------------------------------------------------------------------------- /crawler/17-19录取分数爬虫/09118104北京交通大学.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eshoyuan/GaokaoRecommend/HEAD/crawler/17-19录取分数爬虫/09118104北京交通大学.py -------------------------------------------------------------------------------- /crawler/17-19录取分数爬虫/09118105石河子大学.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eshoyuan/GaokaoRecommend/HEAD/crawler/17-19录取分数爬虫/09118105石河子大学.py -------------------------------------------------------------------------------- /crawler/17-19录取分数爬虫/09118106北京航空航天大学.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eshoyuan/GaokaoRecommend/HEAD/crawler/17-19录取分数爬虫/09118106北京航空航天大学.py -------------------------------------------------------------------------------- /crawler/17-19录取分数爬虫/09118107北京理工大学.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eshoyuan/GaokaoRecommend/HEAD/crawler/17-19录取分数爬虫/09118107北京理工大学.py -------------------------------------------------------------------------------- /crawler/17-19录取分数爬虫/09118108北京科技大学.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eshoyuan/GaokaoRecommend/HEAD/crawler/17-19录取分数爬虫/09118108北京科技大学.py -------------------------------------------------------------------------------- /crawler/17-19录取分数爬虫/09118109北京化工大学.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eshoyuan/GaokaoRecommend/HEAD/crawler/17-19录取分数爬虫/09118109北京化工大学.py -------------------------------------------------------------------------------- /crawler/17-19录取分数爬虫/09118110北京邮电大学.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eshoyuan/GaokaoRecommend/HEAD/crawler/17-19录取分数爬虫/09118110北京邮电大学.py -------------------------------------------------------------------------------- /crawler/17-19录取分数爬虫/09118111北京联合大学.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eshoyuan/GaokaoRecommend/HEAD/crawler/17-19录取分数爬虫/09118111北京联合大学.py -------------------------------------------------------------------------------- /crawler/17-19录取分数爬虫/09118112北京林业大学.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eshoyuan/GaokaoRecommend/HEAD/crawler/17-19录取分数爬虫/09118112北京林业大学.py -------------------------------------------------------------------------------- /crawler/17-19录取分数爬虫/09118113中国传媒大学.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eshoyuan/GaokaoRecommend/HEAD/crawler/17-19录取分数爬虫/09118113中国传媒大学.py -------------------------------------------------------------------------------- /crawler/17-19录取分数爬虫/09118114中央民族大学.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eshoyuan/GaokaoRecommend/HEAD/crawler/17-19录取分数爬虫/09118114中央民族大学.py -------------------------------------------------------------------------------- /crawler/17-19录取分数爬虫/09118115北京师范大学.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eshoyuan/GaokaoRecommend/HEAD/crawler/17-19录取分数爬虫/09118115北京师范大学.py -------------------------------------------------------------------------------- /crawler/17-19录取分数爬虫/09118116南京师范大学.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eshoyuan/GaokaoRecommend/HEAD/crawler/17-19录取分数爬虫/09118116南京师范大学.py -------------------------------------------------------------------------------- /crawler/17-19录取分数爬虫/09118117对外经济贸易大学.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eshoyuan/GaokaoRecommend/HEAD/crawler/17-19录取分数爬虫/09118117对外经济贸易大学.py -------------------------------------------------------------------------------- /crawler/17-19录取分数爬虫/09118118北方工业大学.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eshoyuan/GaokaoRecommend/HEAD/crawler/17-19录取分数爬虫/09118118北方工业大学.py -------------------------------------------------------------------------------- /crawler/17-19录取分数爬虫/09118119北京外国语大学.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eshoyuan/GaokaoRecommend/HEAD/crawler/17-19录取分数爬虫/09118119北京外国语大学.py -------------------------------------------------------------------------------- /crawler/17-19录取分数爬虫/09118120中国地质大学(北京).py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eshoyuan/GaokaoRecommend/HEAD/crawler/17-19录取分数爬虫/09118120中国地质大学(北京).py -------------------------------------------------------------------------------- /crawler/17-19录取分数爬虫/09118121中国矿业大学(北京).py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eshoyuan/GaokaoRecommend/HEAD/crawler/17-19录取分数爬虫/09118121中国矿业大学(北京).py -------------------------------------------------------------------------------- /crawler/17-19录取分数爬虫/09118122新疆大学.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eshoyuan/GaokaoRecommend/HEAD/crawler/17-19录取分数爬虫/09118122新疆大学.py -------------------------------------------------------------------------------- /crawler/17-19录取分数爬虫/09118124浙江理工大学.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eshoyuan/GaokaoRecommend/HEAD/crawler/17-19录取分数爬虫/09118124浙江理工大学.py -------------------------------------------------------------------------------- /crawler/17-19录取分数爬虫/09118125中央财经大学.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eshoyuan/GaokaoRecommend/HEAD/crawler/17-19录取分数爬虫/09118125中央财经大学.py -------------------------------------------------------------------------------- /crawler/17-19录取分数爬虫/09118126华北电力大学.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eshoyuan/GaokaoRecommend/HEAD/crawler/17-19录取分数爬虫/09118126华北电力大学.py -------------------------------------------------------------------------------- /crawler/17-19录取分数爬虫/09118127北京体育大学.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eshoyuan/GaokaoRecommend/HEAD/crawler/17-19录取分数爬虫/09118127北京体育大学.py -------------------------------------------------------------------------------- /crawler/17-19录取分数爬虫/09118128华东政法大学.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eshoyuan/GaokaoRecommend/HEAD/crawler/17-19录取分数爬虫/09118128华东政法大学.py -------------------------------------------------------------------------------- /crawler/17-19录取分数爬虫/09118129燕山大学.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eshoyuan/GaokaoRecommend/HEAD/crawler/17-19录取分数爬虫/09118129燕山大学.py -------------------------------------------------------------------------------- /crawler/17-19录取分数爬虫/09118130首都师范大学.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eshoyuan/GaokaoRecommend/HEAD/crawler/17-19录取分数爬虫/09118130首都师范大学.py -------------------------------------------------------------------------------- /crawler/17-19录取分数爬虫/09118131南通大学.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eshoyuan/GaokaoRecommend/HEAD/crawler/17-19录取分数爬虫/09118131南通大学.py -------------------------------------------------------------------------------- /crawler/17-19录取分数爬虫/09118132上海外国语大学.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eshoyuan/GaokaoRecommend/HEAD/crawler/17-19录取分数爬虫/09118132上海外国语大学.py -------------------------------------------------------------------------------- /crawler/17-19录取分数爬虫/09118133复旦大学.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eshoyuan/GaokaoRecommend/HEAD/crawler/17-19录取分数爬虫/09118133复旦大学.py -------------------------------------------------------------------------------- /crawler/17-19录取分数爬虫/09118134华东师范大学.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eshoyuan/GaokaoRecommend/HEAD/crawler/17-19录取分数爬虫/09118134华东师范大学.py -------------------------------------------------------------------------------- /crawler/17-19录取分数爬虫/09118135上海大学.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eshoyuan/GaokaoRecommend/HEAD/crawler/17-19录取分数爬虫/09118135上海大学.py -------------------------------------------------------------------------------- /crawler/17-19录取分数爬虫/09118136东华大学.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eshoyuan/GaokaoRecommend/HEAD/crawler/17-19录取分数爬虫/09118136东华大学.py -------------------------------------------------------------------------------- /crawler/17-19录取分数爬虫/09118137北京工商大学.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eshoyuan/GaokaoRecommend/HEAD/crawler/17-19录取分数爬虫/09118137北京工商大学.py -------------------------------------------------------------------------------- /crawler/17-19录取分数爬虫/09118138华东理工大学.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eshoyuan/GaokaoRecommend/HEAD/crawler/17-19录取分数爬虫/09118138华东理工大学.py -------------------------------------------------------------------------------- /crawler/17-19录取分数爬虫/09118139同济大学.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eshoyuan/GaokaoRecommend/HEAD/crawler/17-19录取分数爬虫/09118139同济大学.py -------------------------------------------------------------------------------- /crawler/17-19录取分数爬虫/09118140上海交通大学.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eshoyuan/GaokaoRecommend/HEAD/crawler/17-19录取分数爬虫/09118140上海交通大学.py -------------------------------------------------------------------------------- /crawler/17-19录取分数爬虫/09118142南京邮电大学.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eshoyuan/GaokaoRecommend/HEAD/crawler/17-19录取分数爬虫/09118142南京邮电大学.py -------------------------------------------------------------------------------- /crawler/17-19录取分数爬虫/09118143重庆大学.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eshoyuan/GaokaoRecommend/HEAD/crawler/17-19录取分数爬虫/09118143重庆大学.py -------------------------------------------------------------------------------- /crawler/17-19录取分数爬虫/09118144西南大学.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eshoyuan/GaokaoRecommend/HEAD/crawler/17-19录取分数爬虫/09118144西南大学.py -------------------------------------------------------------------------------- /crawler/17-19录取分数爬虫/09118145南京工业大学.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eshoyuan/GaokaoRecommend/HEAD/crawler/17-19录取分数爬虫/09118145南京工业大学.py -------------------------------------------------------------------------------- /crawler/17-19录取分数爬虫/09118201太原理工大学.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eshoyuan/GaokaoRecommend/HEAD/crawler/17-19录取分数爬虫/09118201太原理工大学.py -------------------------------------------------------------------------------- /crawler/17-19录取分数爬虫/09118202内蒙古大学.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eshoyuan/GaokaoRecommend/HEAD/crawler/17-19录取分数爬虫/09118202内蒙古大学.py -------------------------------------------------------------------------------- /crawler/17-19录取分数爬虫/09118203大连理工大学.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eshoyuan/GaokaoRecommend/HEAD/crawler/17-19录取分数爬虫/09118203大连理工大学.py -------------------------------------------------------------------------------- /crawler/17-19录取分数爬虫/09118204广州大学.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eshoyuan/GaokaoRecommend/HEAD/crawler/17-19录取分数爬虫/09118204广州大学.py -------------------------------------------------------------------------------- /crawler/17-19录取分数爬虫/09118205辽宁大学.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eshoyuan/GaokaoRecommend/HEAD/crawler/17-19录取分数爬虫/09118205辽宁大学.py -------------------------------------------------------------------------------- /crawler/17-19录取分数爬虫/09118206大连海事大学.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eshoyuan/GaokaoRecommend/HEAD/crawler/17-19录取分数爬虫/09118206大连海事大学.py -------------------------------------------------------------------------------- /crawler/17-19录取分数爬虫/09118207吉林大学.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eshoyuan/GaokaoRecommend/HEAD/crawler/17-19录取分数爬虫/09118207吉林大学.py -------------------------------------------------------------------------------- /crawler/17-19录取分数爬虫/09118208东北师范大学.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eshoyuan/GaokaoRecommend/HEAD/crawler/17-19录取分数爬虫/09118208东北师范大学.py -------------------------------------------------------------------------------- /crawler/17-19录取分数爬虫/09118209延边大学.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eshoyuan/GaokaoRecommend/HEAD/crawler/17-19录取分数爬虫/09118209延边大学.py -------------------------------------------------------------------------------- /crawler/17-19录取分数爬虫/09118210哈尔滨工业大学.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eshoyuan/GaokaoRecommend/HEAD/crawler/17-19录取分数爬虫/09118210哈尔滨工业大学.py -------------------------------------------------------------------------------- /crawler/17-19录取分数爬虫/09118211汕头大学.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eshoyuan/GaokaoRecommend/HEAD/crawler/17-19录取分数爬虫/09118211汕头大学.py -------------------------------------------------------------------------------- /crawler/17-19录取分数爬虫/09118212东北农业大学.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eshoyuan/GaokaoRecommend/HEAD/crawler/17-19录取分数爬虫/09118212东北农业大学.py -------------------------------------------------------------------------------- /crawler/17-19录取分数爬虫/09118213东北林业大学.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eshoyuan/GaokaoRecommend/HEAD/crawler/17-19录取分数爬虫/09118213东北林业大学.py -------------------------------------------------------------------------------- /crawler/17-19录取分数爬虫/09118215南京大学.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eshoyuan/GaokaoRecommend/HEAD/crawler/17-19录取分数爬虫/09118215南京大学.py -------------------------------------------------------------------------------- /crawler/17-19录取分数爬虫/09118216东南大学.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eshoyuan/GaokaoRecommend/HEAD/crawler/17-19录取分数爬虫/09118216东南大学.py -------------------------------------------------------------------------------- /crawler/17-19录取分数爬虫/09118218苏州大学.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eshoyuan/GaokaoRecommend/HEAD/crawler/17-19录取分数爬虫/09118218苏州大学.py -------------------------------------------------------------------------------- /crawler/17-19录取分数爬虫/09118219南京师范大学.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eshoyuan/GaokaoRecommend/HEAD/crawler/17-19录取分数爬虫/09118219南京师范大学.py -------------------------------------------------------------------------------- /crawler/17-19录取分数爬虫/09118222河海大学.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eshoyuan/GaokaoRecommend/HEAD/crawler/17-19录取分数爬虫/09118222河海大学.py -------------------------------------------------------------------------------- /crawler/17-19录取分数爬虫/09118223南京理工大学.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eshoyuan/GaokaoRecommend/HEAD/crawler/17-19录取分数爬虫/09118223南京理工大学.py -------------------------------------------------------------------------------- /crawler/17-19录取分数爬虫/09118224江南大学.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eshoyuan/GaokaoRecommend/HEAD/crawler/17-19录取分数爬虫/09118224江南大学.py -------------------------------------------------------------------------------- /crawler/17-19录取分数爬虫/09118225南京农业大学.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eshoyuan/GaokaoRecommend/HEAD/crawler/17-19录取分数爬虫/09118225南京农业大学.py -------------------------------------------------------------------------------- /crawler/17-19录取分数爬虫/09118226南京航空航天大学.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eshoyuan/GaokaoRecommend/HEAD/crawler/17-19录取分数爬虫/09118226南京航空航天大学.py -------------------------------------------------------------------------------- /crawler/17-19录取分数爬虫/09118227浙江大学.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eshoyuan/GaokaoRecommend/HEAD/crawler/17-19录取分数爬虫/09118227浙江大学.py -------------------------------------------------------------------------------- /crawler/17-19录取分数爬虫/09118228中国科学技术大学.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eshoyuan/GaokaoRecommend/HEAD/crawler/17-19录取分数爬虫/09118228中国科学技术大学.py -------------------------------------------------------------------------------- /crawler/17-19录取分数爬虫/09118229安徽大学.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eshoyuan/GaokaoRecommend/HEAD/crawler/17-19录取分数爬虫/09118229安徽大学.py -------------------------------------------------------------------------------- /crawler/17-19录取分数爬虫/09118230合肥工业大学.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eshoyuan/GaokaoRecommend/HEAD/crawler/17-19录取分数爬虫/09118230合肥工业大学.py -------------------------------------------------------------------------------- /crawler/17-19录取分数爬虫/09118231厦门大学.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eshoyuan/GaokaoRecommend/HEAD/crawler/17-19录取分数爬虫/09118231厦门大学.py -------------------------------------------------------------------------------- /crawler/17-19录取分数爬虫/09118232福州大学.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eshoyuan/GaokaoRecommend/HEAD/crawler/17-19录取分数爬虫/09118232福州大学.py -------------------------------------------------------------------------------- /crawler/17-19录取分数爬虫/09118233南昌大学.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eshoyuan/GaokaoRecommend/HEAD/crawler/17-19录取分数爬虫/09118233南昌大学.py -------------------------------------------------------------------------------- /crawler/17-19录取分数爬虫/09118234山东大学.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eshoyuan/GaokaoRecommend/HEAD/crawler/17-19录取分数爬虫/09118234山东大学.py -------------------------------------------------------------------------------- /crawler/17-19录取分数爬虫/09118236中国石油大学.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eshoyuan/GaokaoRecommend/HEAD/crawler/17-19录取分数爬虫/09118236中国石油大学.py -------------------------------------------------------------------------------- /crawler/17-19录取分数爬虫/09118238武汉大学.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eshoyuan/GaokaoRecommend/HEAD/crawler/17-19录取分数爬虫/09118238武汉大学.py -------------------------------------------------------------------------------- /crawler/17-19录取分数爬虫/09118239华中科技大学.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eshoyuan/GaokaoRecommend/HEAD/crawler/17-19录取分数爬虫/09118239华中科技大学.py -------------------------------------------------------------------------------- /crawler/17-19录取分数爬虫/09118240浙江工业大学.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eshoyuan/GaokaoRecommend/HEAD/crawler/17-19录取分数爬虫/09118240浙江工业大学.py -------------------------------------------------------------------------------- /crawler/17-19录取分数爬虫/09118241湖北大学.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eshoyuan/GaokaoRecommend/HEAD/crawler/17-19录取分数爬虫/09118241湖北大学.py -------------------------------------------------------------------------------- /crawler/17-19录取分数爬虫/09118242华中师范大学.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eshoyuan/GaokaoRecommend/HEAD/crawler/17-19录取分数爬虫/09118242华中师范大学.py -------------------------------------------------------------------------------- /crawler/17-19录取分数爬虫/09118243华中农业大学.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eshoyuan/GaokaoRecommend/HEAD/crawler/17-19录取分数爬虫/09118243华中农业大学.py -------------------------------------------------------------------------------- /crawler/17-19录取分数爬虫/09118244中国地质大学(武汉).py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eshoyuan/GaokaoRecommend/HEAD/crawler/17-19录取分数爬虫/09118244中国地质大学(武汉).py -------------------------------------------------------------------------------- /crawler/17-19录取分数爬虫/09118245湖南大学.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eshoyuan/GaokaoRecommend/HEAD/crawler/17-19录取分数爬虫/09118245湖南大学.py -------------------------------------------------------------------------------- /crawler/17-19录取分数爬虫/61518110中南大学.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eshoyuan/GaokaoRecommend/HEAD/crawler/17-19录取分数爬虫/61518110中南大学.py -------------------------------------------------------------------------------- /crawler/17-19录取分数爬虫/61518122湖南师范大学.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eshoyuan/GaokaoRecommend/HEAD/crawler/17-19录取分数爬虫/61518122湖南师范大学.py -------------------------------------------------------------------------------- /crawler/17-19录取分数爬虫/61518125国防科技大学.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eshoyuan/GaokaoRecommend/HEAD/crawler/17-19录取分数爬虫/61518125国防科技大学.py -------------------------------------------------------------------------------- /crawler/17-19录取分数爬虫/61518126福建农林大学.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eshoyuan/GaokaoRecommend/HEAD/crawler/17-19录取分数爬虫/61518126福建农林大学.py -------------------------------------------------------------------------------- /crawler/17-19录取分数爬虫/61518205暨南大学.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eshoyuan/GaokaoRecommend/HEAD/crawler/17-19录取分数爬虫/61518205暨南大学.py -------------------------------------------------------------------------------- /crawler/17-19录取分数爬虫/61518207华南理工大学.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eshoyuan/GaokaoRecommend/HEAD/crawler/17-19录取分数爬虫/61518207华南理工大学.py -------------------------------------------------------------------------------- /crawler/17-19录取分数爬虫/61518210上海师范大学.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eshoyuan/GaokaoRecommend/HEAD/crawler/17-19录取分数爬虫/61518210上海师范大学.py -------------------------------------------------------------------------------- /crawler/17-19录取分数爬虫/61518217广西大学.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eshoyuan/GaokaoRecommend/HEAD/crawler/17-19录取分数爬虫/61518217广西大学.py -------------------------------------------------------------------------------- /crawler/17-19录取分数爬虫/61518218四川大学.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eshoyuan/GaokaoRecommend/HEAD/crawler/17-19录取分数爬虫/61518218四川大学.py -------------------------------------------------------------------------------- /crawler/17-19录取分数爬虫/61518229西南交通大学.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eshoyuan/GaokaoRecommend/HEAD/crawler/17-19录取分数爬虫/61518229西南交通大学.py -------------------------------------------------------------------------------- /crawler/17-19录取分数爬虫/61518309西南财经大学.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eshoyuan/GaokaoRecommend/HEAD/crawler/17-19录取分数爬虫/61518309西南财经大学.py -------------------------------------------------------------------------------- /crawler/17-19录取分数爬虫/61518314四川农业大学.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eshoyuan/GaokaoRecommend/HEAD/crawler/17-19录取分数爬虫/61518314四川农业大学.py -------------------------------------------------------------------------------- /crawler/17-19录取分数爬虫/61518315青岛大学.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eshoyuan/GaokaoRecommend/HEAD/crawler/17-19录取分数爬虫/61518315青岛大学.py -------------------------------------------------------------------------------- /crawler/17-19录取分数爬虫/61518319贵州大学.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eshoyuan/GaokaoRecommend/HEAD/crawler/17-19录取分数爬虫/61518319贵州大学.py -------------------------------------------------------------------------------- /crawler/17-19录取分数爬虫/61518407西北大学.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eshoyuan/GaokaoRecommend/HEAD/crawler/17-19录取分数爬虫/61518407西北大学.py -------------------------------------------------------------------------------- /crawler/17-19录取分数爬虫/61518420西安交通大学.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eshoyuan/GaokaoRecommend/HEAD/crawler/17-19录取分数爬虫/61518420西安交通大学.py -------------------------------------------------------------------------------- /crawler/17-19录取分数爬虫/61518421武汉科技大学.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eshoyuan/GaokaoRecommend/HEAD/crawler/17-19录取分数爬虫/61518421武汉科技大学.py -------------------------------------------------------------------------------- /crawler/17-19录取分数爬虫/61518422杭州电子科技大学.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eshoyuan/GaokaoRecommend/HEAD/crawler/17-19录取分数爬虫/61518422杭州电子科技大学.py -------------------------------------------------------------------------------- /crawler/17-19录取分数爬虫/61518424长安大学.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eshoyuan/GaokaoRecommend/HEAD/crawler/17-19录取分数爬虫/61518424长安大学.py -------------------------------------------------------------------------------- /crawler/17-19录取分数爬虫/61518426华侨大学.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eshoyuan/GaokaoRecommend/HEAD/crawler/17-19录取分数爬虫/61518426华侨大学.py -------------------------------------------------------------------------------- /crawler/17-19录取分数爬虫/61518428西安电子科技大学.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eshoyuan/GaokaoRecommend/HEAD/crawler/17-19录取分数爬虫/61518428西安电子科技大学.py -------------------------------------------------------------------------------- /crawler/17-19录取分数爬虫/61518431兰州大学.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eshoyuan/GaokaoRecommend/HEAD/crawler/17-19录取分数爬虫/61518431兰州大学.py -------------------------------------------------------------------------------- /crawler/2020shandong.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eshoyuan/GaokaoRecommend/HEAD/crawler/2020shandong.csv -------------------------------------------------------------------------------- /crawler/location2020.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eshoyuan/GaokaoRecommend/HEAD/crawler/location2020.csv -------------------------------------------------------------------------------- /crawler/syy_crawler.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eshoyuan/GaokaoRecommend/HEAD/crawler/syy_crawler.py -------------------------------------------------------------------------------- /crawler/一分一段表.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eshoyuan/GaokaoRecommend/HEAD/crawler/一分一段表.csv -------------------------------------------------------------------------------- /db.sqlite3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eshoyuan/GaokaoRecommend/HEAD/db.sqlite3 -------------------------------------------------------------------------------- /get_16-20.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eshoyuan/GaokaoRecommend/HEAD/get_16-20.py -------------------------------------------------------------------------------- /get_pre.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eshoyuan/GaokaoRecommend/HEAD/get_pre.py -------------------------------------------------------------------------------- /major_rank_change.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eshoyuan/GaokaoRecommend/HEAD/major_rank_change.py -------------------------------------------------------------------------------- /manage.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eshoyuan/GaokaoRecommend/HEAD/manage.py -------------------------------------------------------------------------------- /read_from_csv.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eshoyuan/GaokaoRecommend/HEAD/read_from_csv.py -------------------------------------------------------------------------------- /recommend/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /recommend/__pycache__/__init__.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eshoyuan/GaokaoRecommend/HEAD/recommend/__pycache__/__init__.cpython-38.pyc -------------------------------------------------------------------------------- /recommend/__pycache__/admin.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eshoyuan/GaokaoRecommend/HEAD/recommend/__pycache__/admin.cpython-38.pyc -------------------------------------------------------------------------------- /recommend/__pycache__/apps.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eshoyuan/GaokaoRecommend/HEAD/recommend/__pycache__/apps.cpython-38.pyc -------------------------------------------------------------------------------- /recommend/__pycache__/models.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eshoyuan/GaokaoRecommend/HEAD/recommend/__pycache__/models.cpython-38.pyc -------------------------------------------------------------------------------- /recommend/__pycache__/urls.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eshoyuan/GaokaoRecommend/HEAD/recommend/__pycache__/urls.cpython-38.pyc -------------------------------------------------------------------------------- /recommend/__pycache__/views.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eshoyuan/GaokaoRecommend/HEAD/recommend/__pycache__/views.cpython-38.pyc -------------------------------------------------------------------------------- /recommend/admin.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eshoyuan/GaokaoRecommend/HEAD/recommend/admin.py -------------------------------------------------------------------------------- /recommend/apps.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eshoyuan/GaokaoRecommend/HEAD/recommend/apps.py -------------------------------------------------------------------------------- /recommend/models.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eshoyuan/GaokaoRecommend/HEAD/recommend/models.py -------------------------------------------------------------------------------- /recommend/tests.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eshoyuan/GaokaoRecommend/HEAD/recommend/tests.py -------------------------------------------------------------------------------- /recommend/urls.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eshoyuan/GaokaoRecommend/HEAD/recommend/urls.py -------------------------------------------------------------------------------- /recommend/views.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eshoyuan/GaokaoRecommend/HEAD/recommend/views.py -------------------------------------------------------------------------------- /splitter/splitter.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eshoyuan/GaokaoRecommend/HEAD/splitter/splitter.py -------------------------------------------------------------------------------- /static/recommend/_first-steps.url: -------------------------------------------------------------------------------- 1 | [InternetShortcut] 2 | URL=https://designmodo.com/slides/first-steps/ -------------------------------------------------------------------------------- /static/recommend/_open-generator.url: -------------------------------------------------------------------------------- 1 | [InternetShortcut] 2 | URL=https://designmodo.com/slides/app/ -------------------------------------------------------------------------------- /static/recommend/ajax-email.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eshoyuan/GaokaoRecommend/HEAD/static/recommend/ajax-email.php -------------------------------------------------------------------------------- /static/recommend/assets/img/appstore.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eshoyuan/GaokaoRecommend/HEAD/static/recommend/assets/img/appstore.jpg -------------------------------------------------------------------------------- /static/recommend/assets/img/background/img-1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eshoyuan/GaokaoRecommend/HEAD/static/recommend/assets/img/background/img-1.jpg -------------------------------------------------------------------------------- /static/recommend/assets/img/background/img-15.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eshoyuan/GaokaoRecommend/HEAD/static/recommend/assets/img/background/img-15.jpg -------------------------------------------------------------------------------- /static/recommend/assets/img/background/img-27.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eshoyuan/GaokaoRecommend/HEAD/static/recommend/assets/img/background/img-27.jpg -------------------------------------------------------------------------------- /static/recommend/assets/img/background/img-68.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eshoyuan/GaokaoRecommend/HEAD/static/recommend/assets/img/background/img-68.jpg -------------------------------------------------------------------------------- /static/recommend/assets/img/background/img-73.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eshoyuan/GaokaoRecommend/HEAD/static/recommend/assets/img/background/img-73.jpg -------------------------------------------------------------------------------- /static/recommend/assets/img/background/img-75.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eshoyuan/GaokaoRecommend/HEAD/static/recommend/assets/img/background/img-75.jpg -------------------------------------------------------------------------------- /static/recommend/assets/img/background/img-82.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eshoyuan/GaokaoRecommend/HEAD/static/recommend/assets/img/background/img-82.jpg -------------------------------------------------------------------------------- /static/recommend/assets/img/background/img-83.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eshoyuan/GaokaoRecommend/HEAD/static/recommend/assets/img/background/img-83.jpg -------------------------------------------------------------------------------- /static/recommend/assets/img/background/img-89.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eshoyuan/GaokaoRecommend/HEAD/static/recommend/assets/img/background/img-89.jpg -------------------------------------------------------------------------------- /static/recommend/assets/img/background/img-95.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eshoyuan/GaokaoRecommend/HEAD/static/recommend/assets/img/background/img-95.jpg -------------------------------------------------------------------------------- /static/recommend/assets/img/bg.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eshoyuan/GaokaoRecommend/HEAD/static/recommend/assets/img/bg.jpg -------------------------------------------------------------------------------- /static/recommend/assets/img/brand-68-adidas.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eshoyuan/GaokaoRecommend/HEAD/static/recommend/assets/img/brand-68-adidas.png -------------------------------------------------------------------------------- /static/recommend/assets/img/brand-68-apple.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eshoyuan/GaokaoRecommend/HEAD/static/recommend/assets/img/brand-68-apple.png -------------------------------------------------------------------------------- /static/recommend/assets/img/brand-68-audi.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eshoyuan/GaokaoRecommend/HEAD/static/recommend/assets/img/brand-68-audi.png -------------------------------------------------------------------------------- /static/recommend/assets/img/brand-68-bbc.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eshoyuan/GaokaoRecommend/HEAD/static/recommend/assets/img/brand-68-bbc.png -------------------------------------------------------------------------------- /static/recommend/assets/img/brand-68-canon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eshoyuan/GaokaoRecommend/HEAD/static/recommend/assets/img/brand-68-canon.png -------------------------------------------------------------------------------- /static/recommend/assets/img/brand-68-coca-cola.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eshoyuan/GaokaoRecommend/HEAD/static/recommend/assets/img/brand-68-coca-cola.png -------------------------------------------------------------------------------- /static/recommend/assets/img/brand-68-facebook.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eshoyuan/GaokaoRecommend/HEAD/static/recommend/assets/img/brand-68-facebook.png -------------------------------------------------------------------------------- /static/recommend/assets/img/brand-68-google.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eshoyuan/GaokaoRecommend/HEAD/static/recommend/assets/img/brand-68-google.png -------------------------------------------------------------------------------- /static/recommend/assets/img/brand-68-greenpeace.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eshoyuan/GaokaoRecommend/HEAD/static/recommend/assets/img/brand-68-greenpeace.png -------------------------------------------------------------------------------- /static/recommend/assets/img/brand-68-microsoft.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eshoyuan/GaokaoRecommend/HEAD/static/recommend/assets/img/brand-68-microsoft.png -------------------------------------------------------------------------------- /static/recommend/assets/img/brand-68-national-geographic.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eshoyuan/GaokaoRecommend/HEAD/static/recommend/assets/img/brand-68-national-geographic.png -------------------------------------------------------------------------------- /static/recommend/assets/img/brand-68-nbc.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eshoyuan/GaokaoRecommend/HEAD/static/recommend/assets/img/brand-68-nbc.png -------------------------------------------------------------------------------- /static/recommend/assets/img/brand-68-nike.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eshoyuan/GaokaoRecommend/HEAD/static/recommend/assets/img/brand-68-nike.png -------------------------------------------------------------------------------- /static/recommend/assets/img/brand-68-playstation.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eshoyuan/GaokaoRecommend/HEAD/static/recommend/assets/img/brand-68-playstation.png -------------------------------------------------------------------------------- /static/recommend/assets/img/brand-68-reebok.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eshoyuan/GaokaoRecommend/HEAD/static/recommend/assets/img/brand-68-reebok.png -------------------------------------------------------------------------------- /static/recommend/assets/img/brand-68-sony.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eshoyuan/GaokaoRecommend/HEAD/static/recommend/assets/img/brand-68-sony.png -------------------------------------------------------------------------------- /static/recommend/assets/img/brand-68-vimeo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eshoyuan/GaokaoRecommend/HEAD/static/recommend/assets/img/brand-68-vimeo.png -------------------------------------------------------------------------------- /static/recommend/assets/img/brand-68-warner-bros.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eshoyuan/GaokaoRecommend/HEAD/static/recommend/assets/img/brand-68-warner-bros.png -------------------------------------------------------------------------------- /static/recommend/assets/img/gallery-75-1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eshoyuan/GaokaoRecommend/HEAD/static/recommend/assets/img/gallery-75-1.jpg -------------------------------------------------------------------------------- /static/recommend/assets/img/gallery-75-2.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eshoyuan/GaokaoRecommend/HEAD/static/recommend/assets/img/gallery-75-2.jpg -------------------------------------------------------------------------------- /static/recommend/assets/img/gallery-75-3.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eshoyuan/GaokaoRecommend/HEAD/static/recommend/assets/img/gallery-75-3.jpg -------------------------------------------------------------------------------- /static/recommend/assets/img/gallery-75-4.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eshoyuan/GaokaoRecommend/HEAD/static/recommend/assets/img/gallery-75-4.jpg -------------------------------------------------------------------------------- /static/recommend/assets/img/gallery-75-5.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eshoyuan/GaokaoRecommend/HEAD/static/recommend/assets/img/gallery-75-5.jpg -------------------------------------------------------------------------------- /static/recommend/assets/img/gallery-75-6.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eshoyuan/GaokaoRecommend/HEAD/static/recommend/assets/img/gallery-75-6.jpg -------------------------------------------------------------------------------- /static/recommend/assets/img/gallery-75-7.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eshoyuan/GaokaoRecommend/HEAD/static/recommend/assets/img/gallery-75-7.jpg -------------------------------------------------------------------------------- /static/recommend/assets/img/googleplay.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eshoyuan/GaokaoRecommend/HEAD/static/recommend/assets/img/googleplay.jpg -------------------------------------------------------------------------------- /static/recommend/assets/img/icon-2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eshoyuan/GaokaoRecommend/HEAD/static/recommend/assets/img/icon-2.png -------------------------------------------------------------------------------- /static/recommend/assets/img/image-89-1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eshoyuan/GaokaoRecommend/HEAD/static/recommend/assets/img/image-89-1.jpg -------------------------------------------------------------------------------- /static/recommend/assets/img/image-89-2.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eshoyuan/GaokaoRecommend/HEAD/static/recommend/assets/img/image-89-2.jpg -------------------------------------------------------------------------------- /static/recommend/assets/img/iphone-73.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eshoyuan/GaokaoRecommend/HEAD/static/recommend/assets/img/iphone-73.png -------------------------------------------------------------------------------- /static/recommend/assets/img/iphone-82-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eshoyuan/GaokaoRecommend/HEAD/static/recommend/assets/img/iphone-82-1.png -------------------------------------------------------------------------------- /static/recommend/assets/img/iphone-82-2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eshoyuan/GaokaoRecommend/HEAD/static/recommend/assets/img/iphone-82-2.png -------------------------------------------------------------------------------- /static/recommend/assets/img/iphone-82-3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eshoyuan/GaokaoRecommend/HEAD/static/recommend/assets/img/iphone-82-3.png -------------------------------------------------------------------------------- /static/recommend/assets/img/iphone-82-4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eshoyuan/GaokaoRecommend/HEAD/static/recommend/assets/img/iphone-82-4.png -------------------------------------------------------------------------------- /static/recommend/assets/img/watch-26-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eshoyuan/GaokaoRecommend/HEAD/static/recommend/assets/img/watch-26-1.png -------------------------------------------------------------------------------- /static/recommend/assets/img/watch-26-2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eshoyuan/GaokaoRecommend/HEAD/static/recommend/assets/img/watch-26-2.png -------------------------------------------------------------------------------- /static/recommend/assets/svg/icons.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eshoyuan/GaokaoRecommend/HEAD/static/recommend/assets/svg/icons.svg -------------------------------------------------------------------------------- /static/recommend/assets/svg/video-icon-dark.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eshoyuan/GaokaoRecommend/HEAD/static/recommend/assets/svg/video-icon-dark.svg -------------------------------------------------------------------------------- /static/recommend/assets/svg/video-icon.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eshoyuan/GaokaoRecommend/HEAD/static/recommend/assets/svg/video-icon.svg -------------------------------------------------------------------------------- /static/recommend/css/slides.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eshoyuan/GaokaoRecommend/HEAD/static/recommend/css/slides.css -------------------------------------------------------------------------------- /static/recommend/css/slides.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eshoyuan/GaokaoRecommend/HEAD/static/recommend/css/slides.min.css -------------------------------------------------------------------------------- /static/recommend/js/plugins.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eshoyuan/GaokaoRecommend/HEAD/static/recommend/js/plugins.js -------------------------------------------------------------------------------- /static/recommend/js/slides.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eshoyuan/GaokaoRecommend/HEAD/static/recommend/js/slides.js -------------------------------------------------------------------------------- /static/recommend/js/slides.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eshoyuan/GaokaoRecommend/HEAD/static/recommend/js/slides.min.js -------------------------------------------------------------------------------- /static/recommend/js/swiper.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eshoyuan/GaokaoRecommend/HEAD/static/recommend/js/swiper.min.js -------------------------------------------------------------------------------- /static/recommend/manual/manual.url: -------------------------------------------------------------------------------- 1 | [InternetShortcut] 2 | URL=https://designmodo.com/slides/app/manual/ -------------------------------------------------------------------------------- /static/recommend/readme first.txt: -------------------------------------------------------------------------------- 1 | Created by https://designmodo.com/slides/ -------------------------------------------------------------------------------- /static/recommend/scss/colors.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eshoyuan/GaokaoRecommend/HEAD/static/recommend/scss/colors.scss -------------------------------------------------------------------------------- /static/recommend/scss/dialog.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eshoyuan/GaokaoRecommend/HEAD/static/recommend/scss/dialog.scss -------------------------------------------------------------------------------- /static/recommend/scss/flex.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eshoyuan/GaokaoRecommend/HEAD/static/recommend/scss/flex.scss -------------------------------------------------------------------------------- /static/recommend/scss/framework.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eshoyuan/GaokaoRecommend/HEAD/static/recommend/scss/framework.scss -------------------------------------------------------------------------------- /static/recommend/scss/grid.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eshoyuan/GaokaoRecommend/HEAD/static/recommend/scss/grid.scss -------------------------------------------------------------------------------- /static/recommend/scss/layout.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eshoyuan/GaokaoRecommend/HEAD/static/recommend/scss/layout.scss -------------------------------------------------------------------------------- /static/recommend/scss/mixins.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eshoyuan/GaokaoRecommend/HEAD/static/recommend/scss/mixins.scss -------------------------------------------------------------------------------- /static/recommend/scss/plumber.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eshoyuan/GaokaoRecommend/HEAD/static/recommend/scss/plumber.scss -------------------------------------------------------------------------------- /static/recommend/scss/reset.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eshoyuan/GaokaoRecommend/HEAD/static/recommend/scss/reset.scss -------------------------------------------------------------------------------- /static/recommend/scss/slides.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eshoyuan/GaokaoRecommend/HEAD/static/recommend/scss/slides.scss -------------------------------------------------------------------------------- /static/recommend/scss/typography.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eshoyuan/GaokaoRecommend/HEAD/static/recommend/scss/typography.scss -------------------------------------------------------------------------------- /static/recommend/scss/useful-classes.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eshoyuan/GaokaoRecommend/HEAD/static/recommend/scss/useful-classes.scss -------------------------------------------------------------------------------- /static/recommend/scss/variables.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eshoyuan/GaokaoRecommend/HEAD/static/recommend/scss/variables.scss -------------------------------------------------------------------------------- /static/recommend/video/bg.mp4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eshoyuan/GaokaoRecommend/HEAD/static/recommend/video/bg.mp4 -------------------------------------------------------------------------------- /static/return/_first-steps.url: -------------------------------------------------------------------------------- 1 | [InternetShortcut] 2 | URL=https://designmodo.com/slides/first-steps/ -------------------------------------------------------------------------------- /static/return/_open-generator.url: -------------------------------------------------------------------------------- 1 | [InternetShortcut] 2 | URL=https://designmodo.com/slides/app/ -------------------------------------------------------------------------------- /static/return/ajax-email.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eshoyuan/GaokaoRecommend/HEAD/static/return/ajax-email.php -------------------------------------------------------------------------------- /static/return/assets/img/appstore.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eshoyuan/GaokaoRecommend/HEAD/static/return/assets/img/appstore.jpg -------------------------------------------------------------------------------- /static/return/assets/img/background/bg.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eshoyuan/GaokaoRecommend/HEAD/static/return/assets/img/background/bg.jpg -------------------------------------------------------------------------------- /static/return/assets/img/background/img-27.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eshoyuan/GaokaoRecommend/HEAD/static/return/assets/img/background/img-27.jpg -------------------------------------------------------------------------------- /static/return/assets/img/background/img-68.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eshoyuan/GaokaoRecommend/HEAD/static/return/assets/img/background/img-68.jpg -------------------------------------------------------------------------------- /static/return/assets/img/background/img-73.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eshoyuan/GaokaoRecommend/HEAD/static/return/assets/img/background/img-73.jpg -------------------------------------------------------------------------------- /static/return/assets/img/background/img-75.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eshoyuan/GaokaoRecommend/HEAD/static/return/assets/img/background/img-75.jpg -------------------------------------------------------------------------------- /static/return/assets/img/background/img-82.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eshoyuan/GaokaoRecommend/HEAD/static/return/assets/img/background/img-82.jpg -------------------------------------------------------------------------------- /static/return/assets/img/background/img-83.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eshoyuan/GaokaoRecommend/HEAD/static/return/assets/img/background/img-83.jpg -------------------------------------------------------------------------------- /static/return/assets/img/background/img-89.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eshoyuan/GaokaoRecommend/HEAD/static/return/assets/img/background/img-89.jpg -------------------------------------------------------------------------------- /static/return/assets/img/background/img-95.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eshoyuan/GaokaoRecommend/HEAD/static/return/assets/img/background/img-95.jpg -------------------------------------------------------------------------------- /static/return/assets/img/brand-68-adidas.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eshoyuan/GaokaoRecommend/HEAD/static/return/assets/img/brand-68-adidas.png -------------------------------------------------------------------------------- /static/return/assets/img/brand-68-apple.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eshoyuan/GaokaoRecommend/HEAD/static/return/assets/img/brand-68-apple.png -------------------------------------------------------------------------------- /static/return/assets/img/brand-68-audi.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eshoyuan/GaokaoRecommend/HEAD/static/return/assets/img/brand-68-audi.png -------------------------------------------------------------------------------- /static/return/assets/img/brand-68-bbc.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eshoyuan/GaokaoRecommend/HEAD/static/return/assets/img/brand-68-bbc.png -------------------------------------------------------------------------------- /static/return/assets/img/brand-68-canon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eshoyuan/GaokaoRecommend/HEAD/static/return/assets/img/brand-68-canon.png -------------------------------------------------------------------------------- /static/return/assets/img/brand-68-coca-cola.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eshoyuan/GaokaoRecommend/HEAD/static/return/assets/img/brand-68-coca-cola.png -------------------------------------------------------------------------------- /static/return/assets/img/brand-68-facebook.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eshoyuan/GaokaoRecommend/HEAD/static/return/assets/img/brand-68-facebook.png -------------------------------------------------------------------------------- /static/return/assets/img/brand-68-google.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eshoyuan/GaokaoRecommend/HEAD/static/return/assets/img/brand-68-google.png -------------------------------------------------------------------------------- /static/return/assets/img/brand-68-greenpeace.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eshoyuan/GaokaoRecommend/HEAD/static/return/assets/img/brand-68-greenpeace.png -------------------------------------------------------------------------------- /static/return/assets/img/brand-68-microsoft.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eshoyuan/GaokaoRecommend/HEAD/static/return/assets/img/brand-68-microsoft.png -------------------------------------------------------------------------------- /static/return/assets/img/brand-68-national-geographic.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eshoyuan/GaokaoRecommend/HEAD/static/return/assets/img/brand-68-national-geographic.png -------------------------------------------------------------------------------- /static/return/assets/img/brand-68-nbc.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eshoyuan/GaokaoRecommend/HEAD/static/return/assets/img/brand-68-nbc.png -------------------------------------------------------------------------------- /static/return/assets/img/brand-68-nike.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eshoyuan/GaokaoRecommend/HEAD/static/return/assets/img/brand-68-nike.png -------------------------------------------------------------------------------- /static/return/assets/img/brand-68-playstation.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eshoyuan/GaokaoRecommend/HEAD/static/return/assets/img/brand-68-playstation.png -------------------------------------------------------------------------------- /static/return/assets/img/brand-68-reebok.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eshoyuan/GaokaoRecommend/HEAD/static/return/assets/img/brand-68-reebok.png -------------------------------------------------------------------------------- /static/return/assets/img/brand-68-sony.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eshoyuan/GaokaoRecommend/HEAD/static/return/assets/img/brand-68-sony.png -------------------------------------------------------------------------------- /static/return/assets/img/brand-68-vimeo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eshoyuan/GaokaoRecommend/HEAD/static/return/assets/img/brand-68-vimeo.png -------------------------------------------------------------------------------- /static/return/assets/img/brand-68-warner-bros.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eshoyuan/GaokaoRecommend/HEAD/static/return/assets/img/brand-68-warner-bros.png -------------------------------------------------------------------------------- /static/return/assets/img/gallery-75-1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eshoyuan/GaokaoRecommend/HEAD/static/return/assets/img/gallery-75-1.jpg -------------------------------------------------------------------------------- /static/return/assets/img/gallery-75-2.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eshoyuan/GaokaoRecommend/HEAD/static/return/assets/img/gallery-75-2.jpg -------------------------------------------------------------------------------- /static/return/assets/img/gallery-75-3.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eshoyuan/GaokaoRecommend/HEAD/static/return/assets/img/gallery-75-3.jpg -------------------------------------------------------------------------------- /static/return/assets/img/gallery-75-4.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eshoyuan/GaokaoRecommend/HEAD/static/return/assets/img/gallery-75-4.jpg -------------------------------------------------------------------------------- /static/return/assets/img/gallery-75-5.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eshoyuan/GaokaoRecommend/HEAD/static/return/assets/img/gallery-75-5.jpg -------------------------------------------------------------------------------- /static/return/assets/img/gallery-75-6.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eshoyuan/GaokaoRecommend/HEAD/static/return/assets/img/gallery-75-6.jpg -------------------------------------------------------------------------------- /static/return/assets/img/gallery-75-7.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eshoyuan/GaokaoRecommend/HEAD/static/return/assets/img/gallery-75-7.jpg -------------------------------------------------------------------------------- /static/return/assets/img/googleplay.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eshoyuan/GaokaoRecommend/HEAD/static/return/assets/img/googleplay.jpg -------------------------------------------------------------------------------- /static/return/assets/img/icon-2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eshoyuan/GaokaoRecommend/HEAD/static/return/assets/img/icon-2.png -------------------------------------------------------------------------------- /static/return/assets/img/image-89-1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eshoyuan/GaokaoRecommend/HEAD/static/return/assets/img/image-89-1.jpg -------------------------------------------------------------------------------- /static/return/assets/img/image-89-2.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eshoyuan/GaokaoRecommend/HEAD/static/return/assets/img/image-89-2.jpg -------------------------------------------------------------------------------- /static/return/assets/img/iphone-73.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eshoyuan/GaokaoRecommend/HEAD/static/return/assets/img/iphone-73.png -------------------------------------------------------------------------------- /static/return/assets/img/iphone-82-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eshoyuan/GaokaoRecommend/HEAD/static/return/assets/img/iphone-82-1.png -------------------------------------------------------------------------------- /static/return/assets/img/iphone-82-2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eshoyuan/GaokaoRecommend/HEAD/static/return/assets/img/iphone-82-2.png -------------------------------------------------------------------------------- /static/return/assets/img/iphone-82-3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eshoyuan/GaokaoRecommend/HEAD/static/return/assets/img/iphone-82-3.png -------------------------------------------------------------------------------- /static/return/assets/img/iphone-82-4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eshoyuan/GaokaoRecommend/HEAD/static/return/assets/img/iphone-82-4.png -------------------------------------------------------------------------------- /static/return/assets/img/watch-26-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eshoyuan/GaokaoRecommend/HEAD/static/return/assets/img/watch-26-1.png -------------------------------------------------------------------------------- /static/return/assets/img/watch-26-2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eshoyuan/GaokaoRecommend/HEAD/static/return/assets/img/watch-26-2.png -------------------------------------------------------------------------------- /static/return/assets/img/上海交通大学.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eshoyuan/GaokaoRecommend/HEAD/static/return/assets/img/上海交通大学.jpg -------------------------------------------------------------------------------- /static/return/assets/img/上海外国语大学.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eshoyuan/GaokaoRecommend/HEAD/static/return/assets/img/上海外国语大学.jpg -------------------------------------------------------------------------------- /static/return/assets/img/上海大学.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eshoyuan/GaokaoRecommend/HEAD/static/return/assets/img/上海大学.jpg -------------------------------------------------------------------------------- /static/return/assets/img/上海财经大学.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eshoyuan/GaokaoRecommend/HEAD/static/return/assets/img/上海财经大学.jpg -------------------------------------------------------------------------------- /static/return/assets/img/东北农业大学.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eshoyuan/GaokaoRecommend/HEAD/static/return/assets/img/东北农业大学.jpg -------------------------------------------------------------------------------- /static/return/assets/img/东北师范大学.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eshoyuan/GaokaoRecommend/HEAD/static/return/assets/img/东北师范大学.jpg -------------------------------------------------------------------------------- /static/return/assets/img/东北林业大学.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eshoyuan/GaokaoRecommend/HEAD/static/return/assets/img/东北林业大学.jpg -------------------------------------------------------------------------------- /static/return/assets/img/东华大学.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eshoyuan/GaokaoRecommend/HEAD/static/return/assets/img/东华大学.jpg -------------------------------------------------------------------------------- /static/return/assets/img/东南大学.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eshoyuan/GaokaoRecommend/HEAD/static/return/assets/img/东南大学.jpg -------------------------------------------------------------------------------- /static/return/assets/img/中南大学.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eshoyuan/GaokaoRecommend/HEAD/static/return/assets/img/中南大学.jpg -------------------------------------------------------------------------------- /static/return/assets/img/中南财经政法大学.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eshoyuan/GaokaoRecommend/HEAD/static/return/assets/img/中南财经政法大学.jpg -------------------------------------------------------------------------------- /static/return/assets/img/中国人民大学.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eshoyuan/GaokaoRecommend/HEAD/static/return/assets/img/中国人民大学.jpg -------------------------------------------------------------------------------- /static/return/assets/img/中国传媒大学.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eshoyuan/GaokaoRecommend/HEAD/static/return/assets/img/中国传媒大学.jpg -------------------------------------------------------------------------------- /static/return/assets/img/中国农业大学.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eshoyuan/GaokaoRecommend/HEAD/static/return/assets/img/中国农业大学.jpg -------------------------------------------------------------------------------- /static/return/assets/img/中国政法大学.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eshoyuan/GaokaoRecommend/HEAD/static/return/assets/img/中国政法大学.jpg -------------------------------------------------------------------------------- /static/return/assets/img/中国海洋大学.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eshoyuan/GaokaoRecommend/HEAD/static/return/assets/img/中国海洋大学.jpg -------------------------------------------------------------------------------- /static/return/assets/img/中国矿业大学.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eshoyuan/GaokaoRecommend/HEAD/static/return/assets/img/中国矿业大学.jpg -------------------------------------------------------------------------------- /static/return/assets/img/中国科学技术大学.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eshoyuan/GaokaoRecommend/HEAD/static/return/assets/img/中国科学技术大学.jpg -------------------------------------------------------------------------------- /static/return/assets/img/中国药科大学.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eshoyuan/GaokaoRecommend/HEAD/static/return/assets/img/中国药科大学.jpg -------------------------------------------------------------------------------- /static/return/assets/img/中央民族大学.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eshoyuan/GaokaoRecommend/HEAD/static/return/assets/img/中央民族大学.jpg -------------------------------------------------------------------------------- /static/return/assets/img/中央财经大学.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eshoyuan/GaokaoRecommend/HEAD/static/return/assets/img/中央财经大学.jpg -------------------------------------------------------------------------------- /static/return/assets/img/云南大学.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eshoyuan/GaokaoRecommend/HEAD/static/return/assets/img/云南大学.jpg -------------------------------------------------------------------------------- /static/return/assets/img/兰州大学.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eshoyuan/GaokaoRecommend/HEAD/static/return/assets/img/兰州大学.jpg -------------------------------------------------------------------------------- /static/return/assets/img/内蒙古大学.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eshoyuan/GaokaoRecommend/HEAD/static/return/assets/img/内蒙古大学.jpg -------------------------------------------------------------------------------- /static/return/assets/img/北京中医药大学.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eshoyuan/GaokaoRecommend/HEAD/static/return/assets/img/北京中医药大学.jpg -------------------------------------------------------------------------------- /static/return/assets/img/北京交通大学.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eshoyuan/GaokaoRecommend/HEAD/static/return/assets/img/北京交通大学.jpg -------------------------------------------------------------------------------- /static/return/assets/img/北京体育大学.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eshoyuan/GaokaoRecommend/HEAD/static/return/assets/img/北京体育大学.jpg -------------------------------------------------------------------------------- /static/return/assets/img/北京化工大学.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eshoyuan/GaokaoRecommend/HEAD/static/return/assets/img/北京化工大学.jpg -------------------------------------------------------------------------------- /static/return/assets/img/北京外国语大学.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eshoyuan/GaokaoRecommend/HEAD/static/return/assets/img/北京外国语大学.jpg -------------------------------------------------------------------------------- /static/return/assets/img/北京大学.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eshoyuan/GaokaoRecommend/HEAD/static/return/assets/img/北京大学.jpg -------------------------------------------------------------------------------- /static/return/assets/img/北京师范大学.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eshoyuan/GaokaoRecommend/HEAD/static/return/assets/img/北京师范大学.jpg -------------------------------------------------------------------------------- /static/return/assets/img/北京林业大学.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eshoyuan/GaokaoRecommend/HEAD/static/return/assets/img/北京林业大学.jpg -------------------------------------------------------------------------------- /static/return/assets/img/北京理工大学.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eshoyuan/GaokaoRecommend/HEAD/static/return/assets/img/北京理工大学.jpg -------------------------------------------------------------------------------- /static/return/assets/img/北京科技大学.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eshoyuan/GaokaoRecommend/HEAD/static/return/assets/img/北京科技大学.jpg -------------------------------------------------------------------------------- /static/return/assets/img/北京航空航天大学.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eshoyuan/GaokaoRecommend/HEAD/static/return/assets/img/北京航空航天大学.jpg -------------------------------------------------------------------------------- /static/return/assets/img/北京邮电大学.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eshoyuan/GaokaoRecommend/HEAD/static/return/assets/img/北京邮电大学.jpg -------------------------------------------------------------------------------- /static/return/assets/img/华东师范大学.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eshoyuan/GaokaoRecommend/HEAD/static/return/assets/img/华东师范大学.jpg -------------------------------------------------------------------------------- /static/return/assets/img/华东理工大学.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eshoyuan/GaokaoRecommend/HEAD/static/return/assets/img/华东理工大学.jpg -------------------------------------------------------------------------------- /static/return/assets/img/华中农业大学.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eshoyuan/GaokaoRecommend/HEAD/static/return/assets/img/华中农业大学.jpg -------------------------------------------------------------------------------- /static/return/assets/img/华中师范大学.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eshoyuan/GaokaoRecommend/HEAD/static/return/assets/img/华中师范大学.jpg -------------------------------------------------------------------------------- /static/return/assets/img/华中科技大学.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eshoyuan/GaokaoRecommend/HEAD/static/return/assets/img/华中科技大学.jpg -------------------------------------------------------------------------------- /static/return/assets/img/华北电力大学.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eshoyuan/GaokaoRecommend/HEAD/static/return/assets/img/华北电力大学.jpg -------------------------------------------------------------------------------- /static/return/assets/img/华南师范大学.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eshoyuan/GaokaoRecommend/HEAD/static/return/assets/img/华南师范大学.jpg -------------------------------------------------------------------------------- /static/return/assets/img/华南理工大学.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eshoyuan/GaokaoRecommend/HEAD/static/return/assets/img/华南理工大学.jpg -------------------------------------------------------------------------------- /static/return/assets/img/南京农业大学.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eshoyuan/GaokaoRecommend/HEAD/static/return/assets/img/南京农业大学.jpg -------------------------------------------------------------------------------- /static/return/assets/img/南京大学.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eshoyuan/GaokaoRecommend/HEAD/static/return/assets/img/南京大学.jpg -------------------------------------------------------------------------------- /static/return/assets/img/南京工业大学.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eshoyuan/GaokaoRecommend/HEAD/static/return/assets/img/南京工业大学.jpg -------------------------------------------------------------------------------- /static/return/assets/img/南京师范大学.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eshoyuan/GaokaoRecommend/HEAD/static/return/assets/img/南京师范大学.jpg -------------------------------------------------------------------------------- /static/return/assets/img/南京理工大学.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eshoyuan/GaokaoRecommend/HEAD/static/return/assets/img/南京理工大学.jpg -------------------------------------------------------------------------------- /static/return/assets/img/南京航空航天大学.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eshoyuan/GaokaoRecommend/HEAD/static/return/assets/img/南京航空航天大学.jpg -------------------------------------------------------------------------------- /static/return/assets/img/南京财经大学.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eshoyuan/GaokaoRecommend/HEAD/static/return/assets/img/南京财经大学.jpg -------------------------------------------------------------------------------- /static/return/assets/img/南昌大学.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eshoyuan/GaokaoRecommend/HEAD/static/return/assets/img/南昌大学.jpg -------------------------------------------------------------------------------- /static/return/assets/img/南通大学.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eshoyuan/GaokaoRecommend/HEAD/static/return/assets/img/南通大学.jpg -------------------------------------------------------------------------------- /static/return/assets/img/厦门大学.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eshoyuan/GaokaoRecommend/HEAD/static/return/assets/img/厦门大学.jpg -------------------------------------------------------------------------------- /static/return/assets/img/合肥工业大学.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eshoyuan/GaokaoRecommend/HEAD/static/return/assets/img/合肥工业大学.jpg -------------------------------------------------------------------------------- /static/return/assets/img/吉林大学.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eshoyuan/GaokaoRecommend/HEAD/static/return/assets/img/吉林大学.jpg -------------------------------------------------------------------------------- /static/return/assets/img/同济大学.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eshoyuan/GaokaoRecommend/HEAD/static/return/assets/img/同济大学.jpg -------------------------------------------------------------------------------- /static/return/assets/img/哈尔滨工业大学.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eshoyuan/GaokaoRecommend/HEAD/static/return/assets/img/哈尔滨工业大学.jpg -------------------------------------------------------------------------------- /static/return/assets/img/哈尔滨工程大学.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eshoyuan/GaokaoRecommend/HEAD/static/return/assets/img/哈尔滨工程大学.jpg -------------------------------------------------------------------------------- /static/return/assets/img/四川农业大学.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eshoyuan/GaokaoRecommend/HEAD/static/return/assets/img/四川农业大学.jpg -------------------------------------------------------------------------------- /static/return/assets/img/四川大学.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eshoyuan/GaokaoRecommend/HEAD/static/return/assets/img/四川大学.jpg -------------------------------------------------------------------------------- /static/return/assets/img/复旦大学.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eshoyuan/GaokaoRecommend/HEAD/static/return/assets/img/复旦大学.jpg -------------------------------------------------------------------------------- /static/return/assets/img/大连海事大学.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eshoyuan/GaokaoRecommend/HEAD/static/return/assets/img/大连海事大学.jpg -------------------------------------------------------------------------------- /static/return/assets/img/大连理工大学.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eshoyuan/GaokaoRecommend/HEAD/static/return/assets/img/大连理工大学.jpg -------------------------------------------------------------------------------- /static/return/assets/img/天津医科大学.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eshoyuan/GaokaoRecommend/HEAD/static/return/assets/img/天津医科大学.jpg -------------------------------------------------------------------------------- /static/return/assets/img/天津大学.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eshoyuan/GaokaoRecommend/HEAD/static/return/assets/img/天津大学.jpg -------------------------------------------------------------------------------- /static/return/assets/img/太原理工大学.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eshoyuan/GaokaoRecommend/HEAD/static/return/assets/img/太原理工大学.jpg -------------------------------------------------------------------------------- /static/return/assets/img/安徽大学.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eshoyuan/GaokaoRecommend/HEAD/static/return/assets/img/安徽大学.jpg -------------------------------------------------------------------------------- /static/return/assets/img/对外经济贸易大学.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eshoyuan/GaokaoRecommend/HEAD/static/return/assets/img/对外经济贸易大学.jpg -------------------------------------------------------------------------------- /static/return/assets/img/山东大学.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eshoyuan/GaokaoRecommend/HEAD/static/return/assets/img/山东大学.jpg -------------------------------------------------------------------------------- /static/return/assets/img/广西大学.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eshoyuan/GaokaoRecommend/HEAD/static/return/assets/img/广西大学.jpg -------------------------------------------------------------------------------- /static/return/assets/img/延边大学.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eshoyuan/GaokaoRecommend/HEAD/static/return/assets/img/延边大学.jpg -------------------------------------------------------------------------------- /static/return/assets/img/新疆大学.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eshoyuan/GaokaoRecommend/HEAD/static/return/assets/img/新疆大学.jpg -------------------------------------------------------------------------------- /static/return/assets/img/暨南大学.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eshoyuan/GaokaoRecommend/HEAD/static/return/assets/img/暨南大学.jpg -------------------------------------------------------------------------------- /static/return/assets/img/武汉大学.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eshoyuan/GaokaoRecommend/HEAD/static/return/assets/img/武汉大学.jpg -------------------------------------------------------------------------------- /static/return/assets/img/武汉理工大学.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eshoyuan/GaokaoRecommend/HEAD/static/return/assets/img/武汉理工大学.jpg -------------------------------------------------------------------------------- /static/return/assets/img/江南大学.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eshoyuan/GaokaoRecommend/HEAD/static/return/assets/img/江南大学.jpg -------------------------------------------------------------------------------- /static/return/assets/img/河海大学.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eshoyuan/GaokaoRecommend/HEAD/static/return/assets/img/河海大学.jpg -------------------------------------------------------------------------------- /static/return/assets/img/浙江大学.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eshoyuan/GaokaoRecommend/HEAD/static/return/assets/img/浙江大学.jpg -------------------------------------------------------------------------------- /static/return/assets/img/清华大学.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eshoyuan/GaokaoRecommend/HEAD/static/return/assets/img/清华大学.jpg -------------------------------------------------------------------------------- /static/return/assets/img/湖南大学.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eshoyuan/GaokaoRecommend/HEAD/static/return/assets/img/湖南大学.jpg -------------------------------------------------------------------------------- /static/return/assets/img/湖南师范大学.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eshoyuan/GaokaoRecommend/HEAD/static/return/assets/img/湖南师范大学.jpg -------------------------------------------------------------------------------- /static/return/assets/img/电子科技大学.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eshoyuan/GaokaoRecommend/HEAD/static/return/assets/img/电子科技大学.jpg -------------------------------------------------------------------------------- /static/return/assets/img/石河子大学.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eshoyuan/GaokaoRecommend/HEAD/static/return/assets/img/石河子大学.jpg -------------------------------------------------------------------------------- /static/return/assets/img/福州大学.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eshoyuan/GaokaoRecommend/HEAD/static/return/assets/img/福州大学.jpg -------------------------------------------------------------------------------- /static/return/assets/img/苏州大学.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eshoyuan/GaokaoRecommend/HEAD/static/return/assets/img/苏州大学.jpg -------------------------------------------------------------------------------- /static/return/assets/img/西北农林科技大学.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eshoyuan/GaokaoRecommend/HEAD/static/return/assets/img/西北农林科技大学.jpg -------------------------------------------------------------------------------- /static/return/assets/img/西北工业大学.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eshoyuan/GaokaoRecommend/HEAD/static/return/assets/img/西北工业大学.jpg -------------------------------------------------------------------------------- /static/return/assets/img/西南交通大学.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eshoyuan/GaokaoRecommend/HEAD/static/return/assets/img/西南交通大学.jpg -------------------------------------------------------------------------------- /static/return/assets/img/西南财经大学.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eshoyuan/GaokaoRecommend/HEAD/static/return/assets/img/西南财经大学.jpg -------------------------------------------------------------------------------- /static/return/assets/img/西安交通大学.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eshoyuan/GaokaoRecommend/HEAD/static/return/assets/img/西安交通大学.jpg -------------------------------------------------------------------------------- /static/return/assets/img/西安电子科技大学.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eshoyuan/GaokaoRecommend/HEAD/static/return/assets/img/西安电子科技大学.jpg -------------------------------------------------------------------------------- /static/return/assets/img/贵州大学.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eshoyuan/GaokaoRecommend/HEAD/static/return/assets/img/贵州大学.jpg -------------------------------------------------------------------------------- /static/return/assets/img/辽宁大学.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eshoyuan/GaokaoRecommend/HEAD/static/return/assets/img/辽宁大学.jpg -------------------------------------------------------------------------------- /static/return/assets/img/郑州大学.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eshoyuan/GaokaoRecommend/HEAD/static/return/assets/img/郑州大学.jpg -------------------------------------------------------------------------------- /static/return/assets/img/重庆大学.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eshoyuan/GaokaoRecommend/HEAD/static/return/assets/img/重庆大学.jpg -------------------------------------------------------------------------------- /static/return/assets/img/长安大学.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eshoyuan/GaokaoRecommend/HEAD/static/return/assets/img/长安大学.jpg -------------------------------------------------------------------------------- /static/return/assets/img/陕西师范大学.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eshoyuan/GaokaoRecommend/HEAD/static/return/assets/img/陕西师范大学.jpg -------------------------------------------------------------------------------- /static/return/assets/svg/icons.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eshoyuan/GaokaoRecommend/HEAD/static/return/assets/svg/icons.svg -------------------------------------------------------------------------------- /static/return/assets/svg/video-icon-dark.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eshoyuan/GaokaoRecommend/HEAD/static/return/assets/svg/video-icon-dark.svg -------------------------------------------------------------------------------- /static/return/assets/svg/video-icon.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eshoyuan/GaokaoRecommend/HEAD/static/return/assets/svg/video-icon.svg -------------------------------------------------------------------------------- /static/return/css/slides.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eshoyuan/GaokaoRecommend/HEAD/static/return/css/slides.css -------------------------------------------------------------------------------- /static/return/css/slides.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eshoyuan/GaokaoRecommend/HEAD/static/return/css/slides.min.css -------------------------------------------------------------------------------- /static/return/js/plugins.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eshoyuan/GaokaoRecommend/HEAD/static/return/js/plugins.js -------------------------------------------------------------------------------- /static/return/js/slides.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eshoyuan/GaokaoRecommend/HEAD/static/return/js/slides.js -------------------------------------------------------------------------------- /static/return/js/slides.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eshoyuan/GaokaoRecommend/HEAD/static/return/js/slides.min.js -------------------------------------------------------------------------------- /static/return/js/swiper.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eshoyuan/GaokaoRecommend/HEAD/static/return/js/swiper.min.js -------------------------------------------------------------------------------- /static/return/manual/manual.url: -------------------------------------------------------------------------------- 1 | [InternetShortcut] 2 | URL=https://designmodo.com/slides/app/manual/ -------------------------------------------------------------------------------- /static/return/readme first.txt: -------------------------------------------------------------------------------- 1 | Created by https://designmodo.com/slides/ -------------------------------------------------------------------------------- /static/return/scss/colors.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eshoyuan/GaokaoRecommend/HEAD/static/return/scss/colors.scss -------------------------------------------------------------------------------- /static/return/scss/dialog.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eshoyuan/GaokaoRecommend/HEAD/static/return/scss/dialog.scss -------------------------------------------------------------------------------- /static/return/scss/flex.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eshoyuan/GaokaoRecommend/HEAD/static/return/scss/flex.scss -------------------------------------------------------------------------------- /static/return/scss/framework.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eshoyuan/GaokaoRecommend/HEAD/static/return/scss/framework.scss -------------------------------------------------------------------------------- /static/return/scss/grid.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eshoyuan/GaokaoRecommend/HEAD/static/return/scss/grid.scss -------------------------------------------------------------------------------- /static/return/scss/layout.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eshoyuan/GaokaoRecommend/HEAD/static/return/scss/layout.scss -------------------------------------------------------------------------------- /static/return/scss/mixins.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eshoyuan/GaokaoRecommend/HEAD/static/return/scss/mixins.scss -------------------------------------------------------------------------------- /static/return/scss/plumber.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eshoyuan/GaokaoRecommend/HEAD/static/return/scss/plumber.scss -------------------------------------------------------------------------------- /static/return/scss/reset.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eshoyuan/GaokaoRecommend/HEAD/static/return/scss/reset.scss -------------------------------------------------------------------------------- /static/return/scss/slides.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eshoyuan/GaokaoRecommend/HEAD/static/return/scss/slides.scss -------------------------------------------------------------------------------- /static/return/scss/typography.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eshoyuan/GaokaoRecommend/HEAD/static/return/scss/typography.scss -------------------------------------------------------------------------------- /static/return/scss/useful-classes.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eshoyuan/GaokaoRecommend/HEAD/static/return/scss/useful-classes.scss -------------------------------------------------------------------------------- /static/return/scss/variables.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eshoyuan/GaokaoRecommend/HEAD/static/return/scss/variables.scss -------------------------------------------------------------------------------- /templates/recommend/news.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eshoyuan/GaokaoRecommend/HEAD/templates/recommend/news.html -------------------------------------------------------------------------------- /templates/recommend/pre_table.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eshoyuan/GaokaoRecommend/HEAD/templates/recommend/pre_table.html -------------------------------------------------------------------------------- /templates/recommend/results.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eshoyuan/GaokaoRecommend/HEAD/templates/recommend/results.html -------------------------------------------------------------------------------- /templates/recommend/return.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eshoyuan/GaokaoRecommend/HEAD/templates/recommend/return.html -------------------------------------------------------------------------------- /templates/recommend/table.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eshoyuan/GaokaoRecommend/HEAD/templates/recommend/table.html -------------------------------------------------------------------------------- /templates/recommend/test.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eshoyuan/GaokaoRecommend/HEAD/templates/recommend/test.html -------------------------------------------------------------------------------- /templates/recommend/welcome.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eshoyuan/GaokaoRecommend/HEAD/templates/recommend/welcome.html --------------------------------------------------------------------------------