简单的Python爬虫刷访问量程序

一下代码实现用默认浏览器连续五次打开某个网页,然后使用os库中带有的taskkill命令关闭浏览器,防止大量占用内存导致死机。

程序仅用于Python学习,不可他用。

本文使用360浏览器。

代码如下:

import httplib2
import urllib
import urllib.request
import webbrowser as web
import time
import os
import random

url='http://blog.csdn.net/u011974126/article/details/50966117'
count=random.randint(1,5)
print(count)
j=0
while j


你可能感兴趣的:(Python)