4行Python代码 “优雅”的访问网站

时间:2022-12-18 12:23:44

第一步:打开软院官网http://sc.neu.edu.cn

第二步:找到某篇你想为母院增加一些点击数的文章,点击,并打开开发者工具进行分析

第三步:写四行Python3代码

import requests,json
headers = {'content-type': 'application/json','User-Agent': 'Mozilla/5.0 (Windows NT 6.3; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/53.0.2785.104 Safari/537.36 Core/1.53.4620.400 QQBrowser/9.7.13014.400'}
url = 'http://sc.neu.edu.cn/system/resource/code/datainput.jsp?owner=1266339530&e=1&w=1280&h=720&treeid=1052&refer=&pagename=L2NvbnRlbnQuanNw&newsid=2127'
r = requests.get(url,headers=headers)

4行Python代码 “优雅”的访问网站