tp腳本
發布時間: 2024-10-18 23:15:50
Ⅰ dnf掃拍腳本哪個好
推薦一個目前賣的比較好的純腳本,未央腳本。
天天自動爬樓,賣票和玉收益也高。而且現在相對穩定,平均8s一把,一天30角色,天天只為沖14 15 16的高階交易票,一張就上百。
現在市面上大部分你能找到的都不穩如果能穩的話,那TP就成了擺設。
Ⅱ linux下的python裡面如何用相關的網路模塊來重啟tp-link路由器
你說的總體是可行的,路由器都會提供一個web 的訪問控制界面,python urllib2 可以利用POST 的方式登錄,加一個header 就可以了,下面是登錄一個BBS 的代碼的header:
req=urllib.request.Request(url)
req.add_header('User-agent','Mozilla/5.0')
req.add_header('Content-Type','application/x-www-form-urlencoded')
params=urllib.parse.urlencode({'id':username,
'login.x':24,
'login.y':8,
'login':'登陸',
'pw':password,
'titletype':'forum'
})
params=params.encode('gb2312')
print('Sendrequest!waitingrespose.....')
res=urllib2.urlopen(req,params)
下面是我ppp登錄路由器的方式:
#!/usr/bin/python
#
#License:GNUGPLv2
#
#Scriptforcomtrendhg536+(firmwareA101-302JAZ-C03_R21.A2pB021g.d15h)
#..
importgetpass
importsys
importtelnetlib
importtime
HOST="192.168.1.1"
LOGIN="admin"
PASS="admin"
PROMPT="->"
WAITTIME=40#Numberofsecond
CONNECTIONNAME="0.8.352"#toseeyourconnections,manuallyconnecttorouter(telnet192.168.1.1)anse"wanshow".+ConId.Forexample""0.8.352""
tnt=telnetlib.Telnet(HOST)
tnt.read_until("Login:")
tnt.write(LOGIN+" ")
tnt.read_until("Password:")
tnt.write(PASS+" ")
tnt.read_until(PROMPT)
tnt.write("pppconfig"+CONNECTIONNAME+"down ")
time.sleep(3)
tnt.write(" ")
tnt.write("pppconfig"+CONNECTIONNAME+"up ")
time.sleep(WAITTIME)
tnt.read_until(PROMPT)
tnt.write("pppconfig"+CONNECTIONNAME+"up ")
tnt.write(" ")
tnt.read_until(PROMPT)
tnt.write("13 ")#pressoptiontoexit
tnt.close()
下面重啟路由器:
#!/usr/bin/envpython
#-*-coding:utf-8-*-
importsys
importtelnetlib
importre
importtime
importsys
importos
HOST="192.168.2.1"
password="password"
classbcolors:
HEADER='