当前位置:   article > 正文

Flask接受任务并异步处理同时多线程处理任务_flask 多线程异步任务

flask 多线程异步任务

常用flask任务,记录比较,后期方便查看

import time
from flask import Flask
from threading import Thread
from concurrent.futures import ThreadPoolExecutor


app = Flask(__name__)


def get_information_page(auth,count):
    success = 0
    fail = 0
    while 1:
        time.sleep(5)
        print(auth,success,fail)
        if success == count:
            break




def task_main(auth,count,threadCount):
    # 空列表
    t_list = []
    # 创建多个线程并启动线程
    for i in range(threadCount):
        t = Thread(target=get_information_page,args=(auth,count,))
        t_list.append(t)
        t.start()
    # 回收线程
    for i in t_list:
        i.join()



@app.route('/<auth>/<count>/', methods=['GET'])
def index(auth,count):
    thread_master = int(count / 10)
    thread_child = count % 10
    if thread_master:
        ThreadPoolExecutor().submit(task_main,auth, thread_master,10)
    if thread_child:
        ThreadPoolExecutor().submit(task_main, auth, thread_child, 1)
    return 'ok'



if __name__ == '__main__':
    app.run()

  • 1
  • 2
  • 3
  • 4
  • 5
  • 6
  • 7
  • 8
  • 9
  • 10
  • 11
  • 12
  • 13
  • 14
  • 15
  • 16
  • 17
  • 18
  • 19
  • 20
  • 21
  • 22
  • 23
  • 24
  • 25
  • 26
  • 27
  • 28
  • 29
  • 30
  • 31
  • 32
  • 33
  • 34
  • 35
  • 36
  • 37
  • 38
  • 39
  • 40
  • 41
  • 42
  • 43
  • 44
  • 45
  • 46
  • 47
  • 48
  • 49
  • 50
声明:本文内容由网友自发贡献,不代表【wpsshop博客】立场,版权归原作者所有,本站不承担相应法律责任。如您发现有侵权的内容,请联系我们。转载请注明出处:https://www.wpsshop.cn/w/小丑西瓜9/article/detail/414245
推荐阅读
相关标签
  

闽ICP备14008679号