码迷,mamicode.com
首页 > 编程语言 > 详细

python 爬虫刷访问量

时间:2019-08-09 14:00:34      阅读:94      评论:0      收藏:0      [点我收藏+]

标签:www   int   build   headers   python程序   爬虫   使用   time   open   

import urllib.request
import time

# 使用build_opener()是为了让python程序模仿浏览器进行访问
opener = urllib.request.build_opener()
opener.addheaders = [(‘User-agent‘, ‘Mozilla/5.0‘)]


# 专刷某个页面
print(‘开始刷了哦:‘)
tempUrl = ‘https://www.cnblogs.com/lma0702/p/11106382.html‘



for j in range(2000):
try:
opener.open(tempUrl)
time.sleep(7)
print(‘%d %s‘ % (j, tempUrl))
except urllib.error.HTTPError:
print(‘urllib.error.HTTPError‘)
time.sleep(1)
except urllib.error.URLError:
print(‘urllib.error.URLError‘)
time.sleep(1)

 

python 爬虫刷访问量

标签:www   int   build   headers   python程序   爬虫   使用   time   open   

原文地址:https://www.cnblogs.com/lma0702/p/11326549.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!