美文网首页
Python3發送多線程請求

Python3發送多線程請求

作者: 报告老师 | 来源:发表于2019-06-14 17:30 被阅读0次

import requests

import json

import threading

import time

import uuid

import random

import datetime

import redis

import logging

import numpy as np

import math

pool = redis.ConnectionPool(host='localhost', port=6379)

logger = logging.getLogger('requset_log')

logger.setLevel(logging.DEBUG)

log_file = logging.FileHandler('test.log', encoding='utf-8')

log_file.setLevel(logging.DEBUG)

formatter = logging.Formatter(

    '%(asctime)s - %(name)s - %(levelname)s - %(message)s')

log_file.setFormatter(formatter)

logger.addHandler(log_file)

url = 'http://ip:port/ctrl/api/get?app_id=8d25bb3617814922&server_name=Utilities.Gas&method=Utilities.Gas.ApiProxy.UpdateOrderRecordsStatus&parameters='

token = 'eyJ0eXAiOiJKV1QiLCJhbGciOiJIUzI1NiJ9.eyJkYXRhIjoiRENqeTBNRG9yendDWkJiY0VtZDRma0JXcFNiVzBycnVOdlZEcSttNEh4cHNISkhlNjZHakVRZGwvbnJVZkhwVVJsRnBQdVVZZklaamFJb3lrNmpqcVVNaUwzc3poQjlUajg1N1BvU3NpS0ovQ0xKTFRDOVYycWpCdTBCbVVUSjQrT1VLMktRZUxObUpndEN4ZXE1VTZNR3dWT2ZmSEZiZ1QzRVRCdkxTRjBwRENpaFdla2FPcHZXeHFOYjFnb282In0.hUvlZ0mVSqoZzNeLUSsfUWT3XJ7KYbl0teh3XRyo_2A'

parameters = [

    '{"outTradeNo":"909f6972ba3126e1c02f9c6c3a39b69d","statusCode":803}']

time_list = []

class counter():

    def set_flag(self, flag):

        redis_conn = redis.Redis(connection_pool=pool)

        self.flag = flag

        redis_conn.set('counter', flag)

        return 'success'

    def get_flag(self, key):

        redis_conn = redis.Redis(connection_pool=pool)

        self.key = key

        _new_flag = ord(redis_conn.get(self.key))

        print(_new_flag)

        return _new_flag

    def incr_flag(self, key):

        redis_conn = redis.Redis(connection_pool=pool)

        self.key = key

        _new_flag = redis_conn.incr(self.key)

        print('第', _new_flag, '個線程組')

        return _new_flag

class getRequests():

    def __init__(self, url, token, params):

        self.token = token

        self.params = params

        self.url = url+random.choice(params)

        self.headers = {'content-type': 'application/json',

                        'Authorization': 'Bearer '+self.token}

    def get(self):

        try:

            r = requests.get(self.url, timeout=5, headers=self.headers)

            data = r.text

            logger.info(data)

            response_time = r.elapsed.total_seconds()*1000

            time_list.append(response_time)

            print('data:', data)

            time_list.sort(reverse=True)

            # print(time_list)

            sum = 0

            for i in range(len(time_list)):

                sum = sum+time_list[i]

            avg_time = sum/len(time_list)

            print('avg_time:', avg_time)

            print('max_time:', max(time_list))

            print('min_time:', min(time_list))

            print('90%line:', time_list[math.ceil((len(time_list)-1)*0.1)])

            logger.info(avg_time)

        except Exception as err:

            print(err)

            logger.error(err)

def exec():

    result = getRequests(url, token, parameters)

    return result.get()

def open_threads():

    try:

        i = 0

        # 开启{{tasks_number}}個线程

        tasks_number = 5

        while i < tasks_number:

            t = threading.Thread(target=exec)

            t.start()

            i += 1

    except Exception as err:

        print(err)

# {{_delay}秒內開啟{tasks_number}}個線程

_delay = 2

# 每個線程組請求間隔{{_sleep_time}}

_sleep_time = 5

while True:

    count = counter().incr_flag('counter')

    if(count >= 200):

        break

    else:

        timer = threading.Timer(_delay, open_threads)

        timer.start()

        time.sleep(_sleep_time)

相关文章

  • Python3發送多線程請求

    import requests import json import threading import time ...

  • 隊列與任務的理解(多線程)

    線程的定義: 一個執行中的程序為一個進程 一個進程一般在一個線程上執行 除非進程的代碼中申請了另一條線程來執行異步...

  • Nginx相對於Apache的優點

    nginx將客戶端請求映射到location中。 nginx相對於Apache優點 高併發:每秒五萬請求(很好處理...

  • Oracle Rac

    Oracle Rac 1. Architecture 解說:用戶發起請求到Application Server, ...

  • [229]8.1 線程的創建

    2017-08-04(五) 蓋樓[229] 8.1 線程的創建 Java中的線程 一個進程可以含有多個線程分享CP...

  • 離֒開֒?!留֒步֒---留֒不֒住֒。。。

    你֒的֒「離֒線֒請֒留֒言֒」 我֒的֒「在֒線֒請֒回֒復֒」 你֒的֒「不֒小֒心֒刪֒了֒你֒」 我֒的֒...

  • AFNetworking框架的簡單使用

    實現Post請求 請求下載 請求上傳

  • 過猶不及

    今天下午上兩節視頻課。 14:10,接到小朋友連線的請求,驚訝:有事請假?結果: 人家說:老師,不是2:50上課嗎...

  • 一起散步 Ⅶ

    你說 有空就來找你吃飯 你請多貴都請 你說 回去就別再出來了 請柬記得發 今天是一個節日 我知道啊 你在盆友圈發過...

  • 多線程 和 Queue

    Queue The Queue module implements multi-producer, multi-c...

网友评论

      本文标题:Python3發送多線程請求

      本文链接:https://www.haomeiwen.com/subject/cbgpfctx.html