1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42
| __author__ = 'ypw'
import urllib2 import socket import time import os
url = "http://192.168.0.1/" urlspeed = "http://192.168.0.1/userRpm/SystemStatisticRpm.htm?contType=1&sortType=5&Num_per_page=50&Goto_page=1" socket.setdefaulttimeout(3) opener = urllib2.build_opener() opener.addheaders.append(('Cookie', 'Authorization=Basic%20YWRtaW46MTIzNDU2;')) request = urllib2.Request(urlspeed) request.add_header("Referer", "http://192.168.0.1/userRpm/MenuRpm.htm")
def zhongjian(yourstr, leftstr, rightstr): leftposition = yourstr.find(leftstr) rightposition = yourstr.find(rightstr, leftposition) return yourstr[leftposition+len(leftstr):rightposition]
def tospd(string): string = int(string) if string > 1024*1024: return str(string/1024/1024)+"MB/s" elif string > 1024: return str(string/1024)+"KB/s" else: return str(string)+"B/s"
while True: html = opener.open(request).read() content = zhongjian(html, "Array(n", ")") content1 = content.split("n") os.system("cls") for content2 in content1: content3 = content2.split(",") if len(content3) >= 8: print content3[1], content3[2], tospd(content3[5]), tospd(content3[6]) time.sleep(0.5)
|
这是自家TP-LINK监控网速的程序...需要改动才能在其他路由里运行,仅供参考.
新知识:包括Cookies的模拟和Referer的伪造. 复习:文本处理