python web服務質量分析

#!/usr/bin/python
#-*- coding: utf-8 -*-
import os.sys
import time
import sys
import pycurl
URL="http://www.baidu.com"
c = pycurl.Curl()
c.setopt(pycurl.URL, URL)
c.setopt(pycurl.CONNECTTIMEOUT, 5)
c.setopt(pycurl.TIMEOUT, 5)
c.setopt(pycurl.NOPROGRESS, 1)
c.setopt(pycurl.FORBID_REUSE, 1)
c.setopt(pycurl.MAXREDIRS, 1)
c.setopt(pycurl.DNS_CACHE_TIMEOUT,30)
indexfile = open(os.path.dirname(os.path.realpath(__file__)) + "/content.txt","wb")
c.setopt(pycurl.WRITEHEADER, indexfile)
c.setopt(pycurl.WRITEDATA, indexfile)
try:
	c.perform()
except Exception,e:
	print "connecion error:"+str(e)
	indexfile.close()
	c.close()
	sys.exit()

NAMELOOKUP_TIME = c.getinfo(c.NAMELOOKUP_TIME)
CONNECT_TIME = c.getinfo(c.CONNECT_TIME)
PRETRANSFER_TIME = c.getinfo(PRETRANSFER_TIME)

STARTTRANSFER_TIME = c.getinfo(STARTTRANSFER_TIME)

TOTAL_TIME = c.getinfo(TOTAL_TIME)
HTTP_CODE = c.getinfo(HTTP_CODE)
SIZE_DOWNLOAD = c.getinfo(SIZE_DOWNLOAD)
HEADER_SIZE = c.getinfo(HEADER_SIZE)
SPEED_DOWNLOAD=c.getinfo(c.SPEED_DOWNLOAD)
#打印數據
print "HTTP狀態碼:%s" %(HTTP_CODE)
print "DNS解析時間:%.2f ms"%(NAMELOOKUP_TIME*1000)
print "建立連接時間:%.2f ms"%(CONNECT_TIME*1000)
print "準備傳輸時間:%.2f ms"%(PRETRANSFER_TIME*1000)
print "傳輸開始時間:%.2f ms"%(STARTTRANSFER_TIME*1000)
print "傳輸結束總時間:%.2f ms"%(TOTAL_TIME*1000)
print "下載數據包大小:%d bytes/s"%(SIZE_DOWNLOAD)
print "HTTP頭部大小:%d byte" %(HEADER_SIZE)
print "平均下載速度:%d bytes/s"%(SPEED_DOWNLOAD)
indexfile.close()
c.close


發表評論
所有評論
還沒有人評論,想成為第一個評論的人麼? 請在上方評論欄輸入並且點擊發布.
相關文章