其實使用python協議csdn刷部落格數量軟體很簡單
首先:pip install beautifulsoup4
然後:將******改為你的部落格名,啟動就行了
#!/usr/bin/python
# -*- encoding:utf-8 -*-
import urllib2
import urllib
import threading
from bs4 import beautifulsoup
defgeturls
(url,headers):
req = urllib2.request(url=url,headers=headers)
resp = urllib2.urlopen(req)
html = resp.read()
soup = beautifulsoup(html)
div = soup.find("div",id="papelist")
links = div.find_all("a")
urls =
urlheader = ""
for link in links:
return urls
defthreadtest
(url,urlheader,headers):
print
"執行我的執行緒名:%s"%threading.current_thread().name
req = urllib2.request(url=url,headers=headers)
resp = urllib2.urlopen(req)
html = resp.read()
soup = beautifulsoup(html)
links = soup.find_all("span",class_="link_title")
for link in links:
urll = urlheader+link.find("a")["href"]
req = urllib2.request(url=urll,headers=headers)
resp = urllib2.urlopen(req)
print
"*****====%s***************==="%url
defgetflushtitle
(urls,headers):
urlheader = ""
for url in urls:
#threadtest(url,urlheader)
t = threading.thread(target=threadtest,name="我的名字:%s"%url,args=(url,urlheader,headers))
t1 = threading.thread(target=threadtest,name="我的名字:%s"%url,args=(url,urlheader,headers))
t2 = threading.thread(target=threadtest,name="我的名字:%s"%url,args=(url,urlheader,headers))
t3 = threading.thread(target=threadtest,name="我的名字:%s"%url,args=(url,urlheader,headers))
t.start()
t1.start()
t2.start()
t3.start()
t.join()
t1.join()
t2.join()
t3.join()
user_agent = "mozilla/5.0 (macintosh; intel mac os x 10.6; rv:2.0.1) gecko/20100101 firefox/4.0.1"
headers =
#只需要將你的部落格名替換掉***xx就行了,如who
#/who/article/list/1
url = "/******/article/list/1"
urls = geturls(url,headers)
print urls
#range中的數量就是你要刷的數量
for i in range(200):
getflushtitle(urls,headers)
python 刷csdn部落格訪問量
由於同個ip訪問短時間不能重複訪問量不會增加,於是選取多篇文章訪問,一邊下來,差不多第一篇文章便可以訪問了。以下 只設定將文章列表訪問以次。防止封號,僅供學習。coding utf 8 import webbrowser as web import time import os urllist fo...
Python刷CSDN部落格指令碼v2 0
author change coding utf 8 python blog s visit count v2.0 v1.0 by change 2015.11.4 再構造http請求訪問這些位址,使用了執行緒提高速度 將部落格中所有文章訪問一遍,從而達到刷訪問量的目的 由於快取的原因,訪問量一段時...
Python爬蟲刷CSDN部落格閱讀數
本部落格僅做技術交流。刷部落格訪問量可恥。原始碼語言為python3。這裡採用西刺免費 ip 先爬取這些免費的ip,然後偽裝成這些ip訪問指定的部落格,從而增加指定文章的閱讀數。以下原始碼以博主的csdn賬號為例,將url自行修改即可訪問自己的博文。注意 刷的太快伺服器並不會增加文章的閱讀數,可自行...