fastapi-scheduler icon indicating copy to clipboard operation
fastapi-scheduler copied to clipboard

FastAPI-Scheduler is a simple scheduled task management FastAPI extension based on APScheduler.

Results 11 fastapi-scheduler issues
Sort by recently updated
recently updated
newest added

Maybe update the example to use lifespan instead. - [Lifespan Events - FastAPI](https://fastapi.tiangolo.com/advanced/events/#alternative-events-deprecated)

I installed the necessary packages and copied and executed the script provided as an example, but encountered an error. Below is stack trace: ```log INFO: Will watch for changes in...

This commit modifies the code to utilize the system's default time zone instead of hardcoding a specific one. By doing so, the application will automatically adapt to the local time...

I have scheduled cron at (Hour=3 and minutes=30) as you can see below code @scheduler.scheduled_job('cron', hour=3, minute=30) def cron_task_test(): print('cron task is run...3:30 ') But in the cron admin panel,...

想增加用户权限校验,使用密码登录后才能看,应该怎么做

Hi, next run time is +6h of my time in admin console. How can i fix this? I can’t see any time zone option in settings. thanks

Hello, may I ask why two identical tasks are generated? 2022-11-13 11:22:22,464 - uvicorn.error - INFO - Started reloader process [27370] using statreload 2022-11-13 11:22:24,330 - apscheduler.scheduler - INFO -...

I created a endpoint to add new jobs for one particular function passing two parameters: job_name and time variables. After run the fastapi, i can add new job through this...

I copied the code in simple example code to main.py and run the app but got not found ![image](https://github.com/user-attachments/assets/e371adaf-076c-4e51-8456-aea95fef124d) Do you know what I am doing wrong? Code below ```python...