python刷簡書文章訪問量

2021-10-06 21:27:13 字數 2864 閱讀 1857

主要方法有3種:

第二種:利用python 非同步高併發請求,主要模組asyncioaiohttp,對增加10000+比較舒服

第四種:python3+selenium利用自動化框架進行請求,此乃下下策,之前用了多程序來操作10driver,發現增加速度上慢的太多,而且非常耗電腦資源。這種方法不推薦。

安裝模組:pip install requests

不用非同步下面非同步模組不用安裝

效果圖演示

普通post請求

)python 非同步協程請求

#忽略證書錯誤

await response #await resp.text(encoding='windows-1251') 解碼

return result

except

:return

'exceptional error occurred'

defmain

(url)

: tasks =

[asyncio.ensure_future(post_html_text(url)

)for page in

range

(10000)]

loop = asyncio.get_event_loop(

) loop.run_until_complete(asyncio.wait(tasks)

)if __name__ ==

"__main__"

: url =

''main(url)

Python 刷訪問量

ip通過 獲取,我使用的的是https 協議的 根據自己需求選擇http或者https 協議的頁面。廢話不多說,直接上 coding utf 8 from urllib import request import requests import random import time import r...

Python刷csdn訪問量

正所周知,python是一門很強大的語言,尤其在抓取資料方面。既然能抓取資料,這就說明可以向 傳送請求。所以基於python語言,借鑑網上的一些資料,大體實現了小規模的訪問量的提公升。廢話少說,我直接上 import urllib.request,re from bs4 import beautif...

python 刷csdn部落格訪問量

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