python指令碼 刷CSDN部落格流量

2021-09-30 19:24:22 字數 1403 閱讀 9824

本指令碼可以通過開啟csdn部落格頁面,來增加部落格訪問量。

前置條件:

安裝了python

安裝了瀏覽器核心,我這裡用的是chrome的

指令碼如下:

#!/usr/bin/evn python

# -*- encoding: utf-8 -*-

"""@file :blog.py

@time :2019/1/22 8:42

@author :robin

@desc

"""from selenium import webdriver

import time

from fake_useragent import useragent

from bs4 import beautifulsoup

from selenium.webdriver.support.wait import webdriverwait

options = webdriver.chromeoptions()

# 隱藏"chrome正在受到自動軟體的控制"

options.add_argument('disable-infobars')

options.add_argument('user-agent='+useragent().random)

# 採用上述配置

browser = webdriver.chrome(options=options)

# 將瀏覽器視窗最大化

# browser.maximize_window()

browser.set_window_size(560, 400)

s_time = time.time()

url = list()

a = 0

s_time = time.time()

for i in range(1, 5):

browser.get(""+str(i))

for link in browser.find_elements_by_xpath("//*[@href]"):

if('' in link.get_attribute('href') and link.get_attribute('href') not in url):

print(link.get_attribute('href'))

link.click()

a = a + 1

print(a)

print(time.time() - s_time)

browser.quit()

同一ip在短時間內多次訪問只算一次,自行把握指令碼執行時間,訪問量稍微刷一些就ok了,畢竟不是別人欣賞自己的文章來訪問的,就算流量上去了,也會因為假的性質而缺少實際意義。(偶爾用用,給自己長點自信)

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刷部落格數量軟體

其實使用python協議csdn刷部落格數量軟體很簡單 首先 pip install beautifulsoup4 然後 將 改為你的部落格名,啟動就行了 usr bin python encoding utf 8 import urllib2 import urllib import thread...

python 刷csdn部落格訪問量

由於同個ip訪問短時間不能重複訪問量不會增加,於是選取多篇文章訪問,一邊下來,差不多第一篇文章便可以訪問了。以下 只設定將文章列表訪問以次。防止封號,僅供學習。coding utf 8 import webbrowser as web import time import os urllist fo...