不占容量自动删除的那种,纯刷流量
热议
2楼 一颗赛艇
wget xxx > /dev/null 不就好了
3楼 sotandlat
大佬明示
4楼 smalloldman
为什么要刷流量?
5楼 sotandlat
测试5G
6楼 imzhifu
- import subprocess
import threading
def download():
name = '/dev/null'
url = 'https://c1.g.mi.com/package/AppStore/00ba939cfc1a34e608eeabfdf93b98cca1902f139/eyJhcGt2IjozNjMwMTA1MDIsIm5hbWUiOiJjb20udGVuY2VudC50bWdwLnNnYW1lIiwidmVyc2lvbiI6IjEuMCIsImNpZCI6Im1lbmdfMTQzOV81X2FuZHJvaWQiLCJtZDUiOmZhbHNlfQ/9d47541f9bd05b56c94416067bdc13b7'
cmd = "wget -O %s %s" % (name, url)
while True:
subprocess.call(cmd, shell=True)
if __name__ == '__main__':
for i in range(10):
t= threading.Thread(target=download)
t.start()
复制代码
7楼 道高人间一尺
我雷布斯与你无怨无仇,阁下何故害我