FastAPI集成APsecheduler的BackgroundScheduler+mongodb(精简)

项目架构:

FastAPI(folder)

>app(folder)

>core(folder)

>models(folder)

>routers(folder)

>utils(folder)

main.py(file)

1 utils文件夹下新建schedulers.py

from apscheduler.schedulers.background import BackgroundScheduler

from apscheduler.jobstores.mongodb import MongoDBJobStore

#特殊说明:此处显示指定DB,会在DB里创建数据库apscheduler_db

jobstores={

'default':MongoDBJobStore(

database='apscheduler_db',

collection='custom_jobs',

host='localhost',

port=27017

)

}

#特殊说明:replace_existing=True会覆盖同名的JOB,但不影响数据库中的,仅处理job_id相同的冲突

scheduler=BackgroundScheduler(jobstores=jobstores,replace_existing=True)

2 main.py中在lifespan上下文初始化和关闭scheduler

import uvicorn

from contextlib import asynccontextmanager

from app.utils.schedulers import jobstores

scheduler=None

#特殊说明:yield中可以监控到正常结束比如ctrl+c,异常结束不能执行yield后代码

@asynccontextmanager

async def lifespan(app:FastAPI):

jobstores['default'].remove_all_jobs()

from app.utils.schedulers import scheduler

yield

scheduler.remove_all_jobs()

scheduler.shutdown(wait=False)

app=FastAPI(lifespan=lifespan)

3 models文件夹新建scheduler.py文件配置基础参数类和默认值

from pydantic import BaseModel

class job_config(BaseModel):

job_id:str="default"

job_name:str="default"

trigger_type:str="interval"

trigger_kwargs:dict={}

seconds:int=30

pass

4 api文件夹下添加sechedulers.py配置添加创建job方法

from app.utils.schedulers import scheduler

from app.models.schedulers import job_config

from fastapi import APIRouter

from typing import Coroutine,Callable

from datetime import datetime

@router.get("create_job")

def create_job(jobconfig,func):

try:

if jobconfig is None:

jobconfig=job_config()

scheduler.add_job(

func,

trigger=jobconfig.trigger_type,

kwargs=jobconfig.trigger_kwargs,#特殊说明:这里可以添加自定义参数

id=jobconfig.job_id,

name=jobconfig.job_name,

seconds=jobconfig.seconds

)

scheduler.start()

except Exception as e:

raise e

except (KeyboardInterrupt, SystemExit):

scheduler.shutdown()

5 测试,调用test方法

@router.get("/function")

def function1():

try:

with open("D:\\demo.txt", "a") as file:

print("写入文件"+ str(datetime.now()), file=file)

except:

pass

@router.get("/test")

def test():

try:

create_job(None,function1)

except:

pass

相关推荐
蓝倾13 小时前
电商开放平台API开发最佳实践:以淘宝开放平台为例
api·fastapi
FE杂志社19 小时前
全栈开发 → FastAPI碎碎念
后端·python·fastapi
Json____6 天前
使用python的 FastApi框架开发图书管理系统-前后端分离项目分享
开发语言·python·fastapi·图书管理系统·图书·项目练习
Python私教8 天前
FastAPI+React19 ERP系统实战 第02期
fastapi
Python私教9 天前
FastAPI+React19 ERP系统实战 第01期
react·fastapi
小宁爱Python11 天前
FastAPI+Sqlite+HTML的登录注册与文件上传系统:完整实现指南
sqlite·html·fastapi
fairymt11 天前
LoRA 问答微调与部署全流程:基于 LLaMA-Factory + DeepSeek + FastAPI 打造专属大模型
fastapi
chenkangck5020 天前
Uvicorn 入门详解
python·fastapi
remandancy.h24 天前
FastAPI:(2)开启FastAPI
fastapi
里探24 天前
FastAPI的初步学习(Django用户过来的)
python·django·fastapi