python下使用ping檢查網路連通情況

來源:互聯網
上載者:User

使用python調用ping命令,然後在日誌中記錄ping的結果,用來監測網路連通情況。

代碼:

from time import *from subprocess import *webf= open("webs.txt","r")webs=[]for w in webf:    webs.append(w.strip())def logAppend(log,info):    inttime = time()    structtime = localtime(inttime)    strtime = strftime("%Y-%m-%d,%H:%M:%S",structtime)    print "at ",strtime    log.write("==================  "+strtime+"  ==================\n")    log.write(info)    log.write("\n\n")    print "append info to file :",log.name    print infodef netCheck():    while True:        for url in webs:            p = Popen(["ping.exe",url],                      stdin=PIPE,stdout=PIPE,stderr=PIPE,                      shell=True)            out = p.stdout.read()            log = open("log\\"+url+".log","a")            logAppend(log,out)            log.close()            sleep(0.01)        print "waiting ..."        sleep(60*15) #sleep for 15min. 60*15    returndef main():    """    the main function    """    print "start..."    netCheck()    print "end."if __name__ == "__main__":    main()

說明:

webs.txt為目的地址,如www.baidu.com,每行一個。

需要在目前的目錄下自己建立一個名為log的檔案夾。

關於time模組:

inttime = time()##得到的是目前時間的小數形式:1366356992.617structtime = localtime(inttime)###轉換為本地時間,#返回的結果是:time.struct_time(tm_year=2013, tm_mon=4, tm_mday=19, 
tm_hour=15, tm_min=36, tm_sec=32, tm_wday=4, tm_yday=109, tm_isdst=0)#這個看著很不順眼,繼續格式化轉換:strtime = strftime("%Y-%m-%d,%H:%M:%S",structtime)
##返回的就是你想要的格式的字串:2013-04-19,15:36:32

其他參數類型:

strftime(format[, tuple]) -> string
將指定的struct_time(預設為目前時間),根據指定的格式化字串輸出
python中時間日期格式化符號:
%y 兩位元的年份表示(00-99)
%Y 四位元的年份表示(000-9999)
%m 月份(01-12)
%d 月內中的一天(0-31)
%H 24小時制小時數(0-23)
%I 12小時制小時數(01-12) 
%M 分鐘數(00=59)
%S 秒(00-59)

%a 本地簡化星期名稱
%A 本地完整星期名稱
%b 本地簡化的月份名稱
%B 本地完整的月份名稱
%c 本地相應的日期表示和時間表示
%j 年內的一天(001-366)
%p 本地A.M.或P.M.的等價符
%U 一年中的星期數(00-53)星期天為星期的開始
%w 星期(0-6),星期天為星期的開始
%W 一年中的星期數(00-53)星期一為星期的開始
%x 本地相應的日期表示
%X 本地相應的時間表示
%Z 當前時區的名稱
%% %號本身 


相關文章

聯繫我們

該頁面正文內容均來源於網絡整理,並不代表阿里雲官方的觀點,該頁面所提到的產品和服務也與阿里云無關,如果該頁面內容對您造成了困擾,歡迎寫郵件給我們,收到郵件我們將在5個工作日內處理。

如果您發現本社區中有涉嫌抄襲的內容,歡迎發送郵件至: info-contact@alibabacloud.com 進行舉報並提供相關證據,工作人員會在 5 個工作天內聯絡您,一經查實,本站將立刻刪除涉嫌侵權內容。

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.