刷网页浏览量脚本

import urllib.requestimport time#使用build_opener()是为了让python程序模仿浏览器进行访问opener = urllib.request.build_opener()opener.addheaders = [(‘User-agent’, ‘Mozilla/5.0’)]#专刷某个页面print(‘开始刷了哦:’)tempUrl = ‘http://kczx.hnu.edu.cn/G2S/Template/View.aspx?action=view&courseType=1&courseId=5756&ZZWLOOKINGFOR=G’for j in range(200): try: opener.open(tempUrl) print(’%d %s’ % (j , tempUrl)) except urllib.error.HTTPError: print(‘urllib.error.HTTPError’) time.sleep(1) time.sleep(1)time.sleep(0.1)

你可能感兴趣的:(python)