溫馨提示×

您好,登錄后才能下訂單哦!

密碼登錄×
登錄注冊(cè)×
其他方式登錄
點(diǎn)擊 登錄注冊(cè) 即表示同意《億速云用戶服務(wù)條款》
  • 首頁(yè) > 
  • 教程 > 
  • 開發(fā)技術(shù) > 
  • Python實(shí)現(xiàn)可設(shè)置持續(xù)運(yùn)行時(shí)間、線程數(shù)及時(shí)間間隔的多線程異步post請(qǐng)求功能

Python實(shí)現(xiàn)可設(shè)置持續(xù)運(yùn)行時(shí)間、線程數(shù)及時(shí)間間隔的多線程異步post請(qǐng)求功能

發(fā)布時(shí)間:2020-09-09 10:37:35 來源:腳本之家 閱讀:178 作者:壞蛋是我 欄目:開發(fā)技術(shù)

本文實(shí)例講述了Python實(shí)現(xiàn)可設(shè)置持續(xù)運(yùn)行時(shí)間、線程數(shù)及時(shí)間間隔的多線程異步post請(qǐng)求功能。分享給大家供大家參考,具體如下:

#coding=utf8
'''
random.randint(a, b):用于生成一個(gè)指定范圍內(nèi)的整數(shù)。
其中參數(shù)a是下限,參數(shù)b是上限,生成的隨機(jī)數(shù)n: a <= n <= b
random.choice(sequence):從序列中獲取一個(gè)隨機(jī)元素
參數(shù)sequence表示一個(gè)有序類型(列表,元組,字符串)
'''
import httplib,json
import time
import threading
from random import randint,choice
#創(chuàng)建請(qǐng)求函數(shù)
def postRequest(threadNum):
  postJson={
        }
  #定義需要進(jìn)行發(fā)送的數(shù)據(jù)
  postData=json.dumps(postJson)
  #定義一些文件頭
  headerdata = {
    "content-type":"application/json",
     }
  #接口
  requrl ="/v1/query"
  #請(qǐng)求服務(wù),例如:www.baidu.com
  hostServer=""
  #連接服務(wù)器
  conn = httplib.HTTPConnection(hostServer)
  #發(fā)送請(qǐng)求
  conn.request(method="POST",url=requrl,body=postData,headers=headerdata)
  #獲取請(qǐng)求響應(yīng)
  response=conn.getresponse()
  #打印請(qǐng)求狀態(tài)
  if response.status in range(200,300):
    print u"線程"+str(threadNum)+u"狀態(tài)碼:"+str(response.status)
  conn.close()
def run(threadNum,internTime,duration):
  #創(chuàng)建數(shù)組存放線程
  threads=[]
  try:
    #創(chuàng)建線程
    for i in range(1,threadNum):
      #針對(duì)函數(shù)創(chuàng)建線程
      t=threading.Thread(target=postRequest,args=(i,))
      #把創(chuàng)建的線程加入線程組
      threads.append(t)
  except Exception,e:
    print e
  try:
    #啟動(dòng)線程
    for thread in threads:
        thread.setDaemon(True)
        thread.start()
        time.sleep(internTime)
    #等待所有線程結(jié)束
    for thread in threads:
        thread.join(duration)
  except Exception,e:
      print e
if __name__ == '__main__':
  startime=time.strftime("%Y%m%d%H%M%S")
  now=time.strftime("%Y%m%d%H%M%S")
  duratiion=raw_input(u"輸入持續(xù)運(yùn)行時(shí)間:")
  while (startime+str(duratiion))!=now:
    run(10,1,int(duratiion))
    now=time.strftime("%Y%m%d%H%M%S")

運(yùn)行結(jié)果:

Python實(shí)現(xiàn)可設(shè)置持續(xù)運(yùn)行時(shí)間、線程數(shù)及時(shí)間間隔的多線程異步post請(qǐng)求功能

更多關(guān)于Python相關(guān)內(nèi)容可查看本站專題:《Python Socket編程技巧總結(jié)》、《Python數(shù)據(jù)結(jié)構(gòu)與算法教程》、《Python函數(shù)使用技巧總結(jié)》、《Python字符串操作技巧匯總》、《Python入門與進(jìn)階經(jīng)典教程》及《Python文件與目錄操作技巧匯總》

希望本文所述對(duì)大家Python程序設(shè)計(jì)有所幫助。

向AI問一下細(xì)節(jié)

免責(zé)聲明:本站發(fā)布的內(nèi)容(圖片、視頻和文字)以原創(chuàng)、轉(zhuǎn)載和分享為主,文章觀點(diǎn)不代表本網(wǎng)站立場(chǎng),如果涉及侵權(quán)請(qǐng)聯(lián)系站長(zhǎng)郵箱:is@yisu.com進(jìn)行舉報(bào),并提供相關(guān)證據(jù),一經(jīng)查實(shí),將立刻刪除涉嫌侵權(quán)內(nèi)容。

AI