Python Flask实现后台任务轻松构建高效API应用
作者:csdn1561168266 时间:2021-09-25 01:37:43
大家好,今天来学习用Flask API创建Python后台任务。
在Python中,有若干解决方案可以实现后台任务,比如Celery或Redis Queue,都是实现任务队列系统的好方法。但使用这二者都比较麻烦。设想这样一个场景,我们用Flask建立一个API,实现从一个终端调用后台任务,并用另一个终端停止后台任务。
使用Flask建立了一个简单的API,有两个主要的方法,一个用于启动后台任务,另一个用于停止。
为了管理任务的生命周期,我们使用Event Objects
,这是一种简单的线程间通信机制。
如下所示是所需导入的库、线程事件声明和后台任务方法:
from time import sleep
from flask import Flask
from flask_cors import CORS
import threading
thread_event = threading.Event()
def backgroundTask():
while thread_event.is_set():
print('Background task running!')
sleep(5)
这里的关键是is_set()
方法,它将返回内部线程事件标志的值:true
或false
。
首先,使用set()
方法把标志设置为true
,它将启动一个线程,并连续运行backgroundTask
方法。
@app.route("/start", methods=["POST"])
def startBackgroundTask():
try:
thread_event.set()
thread = threading.Thread(target=backgroundTask)
thread.start()
return "Background task started!"
except Exception as error:
return str(error)
如果要停止任务,调用clear()
方法将标志设置为false
,以停止正在运行的线程。
@app.route("/stop", methods=["POST"])
def stopBackgroundTask():
try:
thread_event.clear()
return "Background task stopped!"
except Exception as error:
return str(error)
来源:https://blog.csdn.net/csdn1561168266/article/details/130159771
标签:Python,Flask,API,后台任务
0
投稿
猜你喜欢
解决新版Pycharm中Matplotlib图像不在弹出独立的显示窗口问题
2023-06-28 02:44:14
利用Python半自动化生成Nessus报告的方法
2021-03-10 23:04:01
使用Anaconda3建立虚拟独立的python2.7环境方法
2023-10-01 20:10:43
用Python进行TCP网络编程的教程
2021-07-31 06:06:07
Python中正则表达式的详细教程
2023-07-14 23:53:14
使用vue实现HTML页面生成图片的方法
2024-04-27 15:51:47
tensorflow tf.train.batch之数据批量读取方式
2023-12-08 01:11:51
window.open被浏览器拦截后的自定义提示
2007-11-23 12:31:00
Python利用pandas处理Excel数据的应用详解
2022-02-08 16:25:02
MySQL基础之MySQL 5.7 新增配置
2024-01-15 08:19:02
Python Serial串口基本操作(收发数据)
2022-04-17 09:54:07
九个Python列表生成式高频面试题汇总
2023-06-04 20:09:51
过期软件破解办法实例详解
2024-05-02 17:38:03
MATLAB数学建模之画图汇总
2023-06-14 06:49:50
Python turtle绘画象棋棋盘
2022-05-06 22:48:55
PHP实现无限极分类的两种方式示例【递归和引用方式】
2023-11-15 18:26:33
网站分析方法系列二——分析页面区块价值
2011-01-06 12:32:00
vue.js 实现图片本地预览 裁剪 压缩 上传功能
2024-05-11 09:11:06
ubuntu系统下使用pm2设置nodejs开机自启动的方法
2023-10-02 22:23:16
echo(),print(),print_r()之间的区别?
2023-11-15 08:52:42