本文主要是介绍自己写的一点福利代码(二),希望对大家解决编程问题提供一定的参考价值,需要的开发者们随着小编来一起学习吧!
自己写的一点福利代码(二)
作者:vpoet
注:这个系列我只贴代码,代码不注释.有兴趣的自己读读就懂了,纯属娱乐,望管理员抬手
若有转载一定不要注明来源
注:这个系列我只贴代码,代码不注释.有兴趣的自己读读就懂了,纯属娱乐,望管理员抬手
若有转载一定不要注明来源
#coding=utf-8
import webbrowser
import time
import urllib2
import re
import os
import thread
import threading
mylock = threading.RLock() tabcount=1def BlogFun(n,url,MaxVisitor,threadnumber):visitcount = r'<span class="link_view" title="阅读次数">(\d+)人阅读</span>'global tabcount while True:mylock.acquire() if tabcount >10:os.system('taskkill /F /IM chrome.exe')tabcount = 1else:tabcount = tabcount + 1mylock.release() webbrowser.open(url,new=1)request=urllib2.Request(url)request.add_header('User-Agent','Mozilla/5.0 (Windows; U; Windows NT 6.1; en-US; rv:1.9.1.6) Gecko/20091201 Firefox/3.5.6')opener = urllib2.build_opener()fblog = opener.open(request)htm = fblog.read()Ref=re.findall(visitcount,htm)time.sleep(n)if int(Ref[0])>MaxVisitor:breakif __name__=="__main__":main_url = "http://blog.csdn.net/u013018721/article/details/37996979"threadSum= 5MaxVisitor = 1050timedelay=3print main_url+" 开启模式... "+"\n"for threadnumber in range(threadSum):thread.start_new_thread(BlogFun,(timedelay,main_url,MaxVisitor,threadnumber,))threadnumber=threadnumber+1print "Main Thread Over.............."
这篇关于自己写的一点福利代码(二)的文章就介绍到这儿,希望我们推荐的文章对编程师们有所帮助!