Python3接口性能測(cè)試實(shí)例代碼
首先來(lái)看實(shí)例代碼:
# -*- coding:utf-8 -*-
import requests
import datetime
import time
import threading
'''
allow_redirects = False禁止重定向,添加在request參數(shù)后
get請(qǐng)求用params傳參
post請(qǐng)求,數(shù)據(jù)類型form,用data傳參
post請(qǐng)求,數(shù)據(jù)類型form,用data傳參
post請(qǐng)求,數(shù)據(jù)類型json,json傳參
timeout:請(qǐng)求超時(shí)時(shí)間,添加在request參數(shù)后
nub = 10#設(shè)置并發(fā)線程數(shù)
ResponseTime=float(result.elapsed.microseconds)/1000 #獲取響應(yīng)時(shí)間,單位ms
ThinkTime = 0.5#設(shè)置思考時(shí)間
AverageTime = "{:.3f}".format(float(sum(myrequest.times))/float(len(myrequest.times)))#計(jì)算數(shù)組的平均值,保留3位小數(shù)
totaltime = float(hour)*60*60 + float(minute)*60 + float(second) #計(jì)算總的思考時(shí)間+請(qǐng)求時(shí)間
'''
class url_request:
times = []
error = []
def weather_DC(self):
myrequest=url_request()
weatherinfo_search = 'https://restapi.amap.com/v3/weather/weatherInfo?parameters'
params = {'key': 'cd1b11e80ffac05253196aa2a1233f25',
'city': 110101,
'extensions': 'base',
'output': 'JSON'}
result = requests.get(url=weatherinfo_search, params=params)
print("狀態(tài)碼:",result.status_code)
print("返回報(bào)文:",result.text)
ResponseTime=float(result.elapsed.microseconds)/1000
myrequest.times.append(ResponseTime)
if result.status_code !=200 :
myrequest.error.append("0")
if __name__=='__main__':
myrequest=url_request()
threads = []
starttime = datetime.datetime.now()
print("請(qǐng)求開(kāi)始時(shí)間:request start time %s" %starttime)
nub = 10
ThinkTime = 0.5
for i in range(1, nub+1):
t = threading.Thread(target=myrequest.weather_DC())
threads.append(t)
for t in threads:
time.sleep(ThinkTime)
print("線程數(shù):thread %s" %t)
t.setDaemon(True)
t.start()
t.join()
endtime = datetime.datetime.now()
print("請(qǐng)求結(jié)束時(shí)間:request end time %s" %endtime)
time.sleep(3)
AverageTime = "{:.3f}".format(float(sum(myrequest.times))/float(len(myrequest.times)))
print("平均響應(yīng)時(shí)間:Average Response Time %s ms" %AverageTime)
usetime = str(endtime - starttime)
hour = usetime.split(':').pop(0)
minute = usetime.split(':').pop(1)
second = usetime.split(':').pop(2)
totaltime = float(hour)*60*60 + float(minute)*60 + float(second)
print("并發(fā)數(shù):Concurrent processing %s" %nub)
print("#總共消耗的時(shí)間:use total time %s s" %(totaltime-float(nub*ThinkTime)))
print("錯(cuò)誤請(qǐng)求數(shù):fail request %s s" %myrequest.error.count("0"))
實(shí)例擴(kuò)展:
利用ruquest發(fā)送請(qǐng)求,利用多線程模擬并發(fā)
#!/user/bin/env python
#coding=utf-8
import requests
import datetime
import time
import threading
class url_request():
times = []
error = []
def req(self,AppID,url):
myreq=url_request()
headers = {'User-Agent' : 'Mozilla/5.0 (Linux; Android 4.2.1; en-us; Nexus 4 Build/JOP40D) AppleWebKit/535.19 (KHTML, like Gecko) Chrome/18.0.1025.166 Mobile Safari/535.19'}
payload = {'AppID':AppID,'CurrentURL':url}
r = requests.post("http://xx.xxx.com/WeiXinJSAccessToken/json/WeChatJSTicket",headers=headers,data=payload)
ResponseTime=float(r.elapsed.microseconds)/1000 #獲取響應(yīng)時(shí)間,單位ms
myreq.times.append(ResponseTime) #將響應(yīng)時(shí)間寫(xiě)入數(shù)組
if r.status_code !=200 :
myreq.error.append("0")
if __name__=='__main__':
myreq=url_request()
threads = []
starttime = datetime.datetime.now()
print "request start time %s" %starttime
nub = 50#設(shè)置并發(fā)線程數(shù)
ThinkTime = 0.5#設(shè)置思考時(shí)間
for i in range(1, nub+1):
t = threading.Thread(target=myreq.req, args=('12','http://m.ctrip.com/webapp/cpage/#mypoints'))
threads.append(t)
for t in threads:
time.sleep(ThinkTime)
#print "thread %s" %t #打印線程
t.setDaemon(True)
t.start()
t.join()
endtime = datetime.datetime.now()
print "request end time %s" %endtime
time.sleep(3)
AverageTime = "{:.3f}".format(float(sum(myreq.times))/float(len(myreq.times))) #計(jì)算數(shù)組的平均值,保留3位小數(shù)
print "Average Response Time %s ms" %AverageTime #打印平均響應(yīng)時(shí)間
usetime = str(endtime - starttime)
hour = usetime.split(':').pop(0)
minute = usetime.split(':').pop(1)
second = usetime.split(':').pop(2)
totaltime = float(hour)*60*60 + float(minute)*60 + float(second) #計(jì)算總的思考時(shí)間+請(qǐng)求時(shí)間
print "Concurrent processing %s" %nub #打印并發(fā)數(shù)
print "use total time %s s" %(totaltime-float(nub*ThinkTime)) #打印總共消耗的時(shí)間
print "fail request %s" %myreq.error.count("0") #打印錯(cuò)誤請(qǐng)求數(shù)
request start time 2015-02-10 18:24:14.316000 request end time 2015-02-10 18:24:39.769000 Average Response Time 46.700 ms Concurrent processing 50 use total time 25.453 s fail request 1
到此這篇關(guān)于Python3接口性能測(cè)試實(shí)例代碼的文章就介紹到這了,更多相關(guān)Python3實(shí)現(xiàn)簡(jiǎn)單的接口性能測(cè)試內(nèi)容請(qǐng)搜索腳本之家以前的文章或繼續(xù)瀏覽下面的相關(guān)文章希望大家以后多多支持腳本之家!
相關(guān)文章
python批量導(dǎo)出導(dǎo)入MySQL用戶的方法
這篇文章主要介紹了2013-11-11
Python使用面向?qū)ο蠓绞絼?chuàng)建線程實(shí)現(xiàn)12306售票系統(tǒng)
目前python 提供了幾種多線程實(shí)現(xiàn)方式 thread,threading,multithreading ,其中thread模塊比較底層,而threading模塊是對(duì)thread做了一些包裝,可以更加方便的被使用2015-12-12
Django nginx配置實(shí)現(xiàn)過(guò)程詳解
這篇文章主要介紹了Django nginx配置實(shí)現(xiàn)過(guò)程詳解,文中通過(guò)示例代碼介紹的非常詳細(xì),對(duì)大家的學(xué)習(xí)或者工作具有一定的參考學(xué)習(xí)價(jià)值,需要的朋友可以參考下2020-09-09
使用Python matplotlib作圖時(shí),設(shè)置橫縱坐標(biāo)軸數(shù)值以百分比(%)顯示
這篇文章主要介紹了使用Python matplotlib作圖時(shí),設(shè)置橫縱坐標(biāo)軸數(shù)值以百分比(%)顯示,具有很好的參考價(jià)值,希望對(duì)大家有所幫助。一起跟隨小編過(guò)來(lái)看看吧2020-05-05
python簡(jiǎn)單的函數(shù)定義和用法實(shí)例
這篇文章主要介紹了python簡(jiǎn)單的函數(shù)定義和用法,實(shí)例分析了Python自定義函數(shù)及其使用方法,具有一定參考借鑒價(jià)值,需要的朋友可以參考下2015-05-05
解決Python3中Matplotlib繪圖顯示方塊的問(wèn)題
這篇文章主要介紹了解決Python3中Matplotlib繪圖顯示方塊的問(wèn)題,具有很好的參考價(jià)值,希望對(duì)大家有所幫助,如有錯(cuò)誤或未考慮完全的地方,望不吝賜教2023-09-09
python的ping網(wǎng)絡(luò)狀態(tài)監(jiān)測(cè)的實(shí)現(xiàn)(含多IP)
本文主要介紹了python的ping網(wǎng)絡(luò)狀態(tài)監(jiān)測(cè)的實(shí)現(xiàn)(含多IP),文中通過(guò)示例代碼介紹的非常詳細(xì),對(duì)大家的學(xué)習(xí)或者工作具有一定的參考學(xué)習(xí)價(jià)值,需要的朋友們下面隨著小編來(lái)一起學(xué)習(xí)學(xué)習(xí)吧2023-03-03

