Skip to main content

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

Project description

FastAPI-Scheduler

项目介绍

FastAPI-Scheduler是一个基于APScheduler的简单定时任务管理FastAPI拓展库.

安装

pip install fastapi-scheduler

简单示例

main.py:

from fastapi import FastAPI
from fastapi_amis_admin.amis_admin.settings import Settings
from fastapi_amis_admin.amis_admin.site import AdminSite
from datetime import date
from fastapi_scheduler import SchedulerAdmin

# 创建`FastAPI`应用
app = FastAPI()

# 创建`AdminSite`实例
site = AdminSite(settings=Settings(database_url_async='sqlite+aiosqlite:///admisadmin.db'))

# 创建定时任务调度器`SchedulerAdmin`实例
scheduler = SchedulerAdmin.bind(site)


# 添加定时任务,参考官方文档: https://apscheduler.readthedocs.io/en/master/
# use when you want to run the job at fixed intervals of time
@scheduler.scheduled_job('interval', seconds=60)
def interval_task_test():
    print('interval task is run...')


# use when you want to run the job periodically at certain time(s) of day
@scheduler.scheduled_job('cron', hour=3, minute=30)
def cron_task_test():
    print('cron task is run...')


# use when you want to run the job just once at a certain point of time
@scheduler.scheduled_job('date', run_date=date(2022, 11, 11))
def date_task_test():
    print('date task is run...')


# 挂载后台管理系统
site.mount_app(app)


@app.on_event("startup")
async def startup():
    # 启动定时任务调度器
    scheduler.start()


if __name__ == '__main__':
    import uvicorn

    uvicorn.run(app, debug=True)

界面预览

  • Open http://127.0.0.1:8000/admin/ in your browser:

SchedulerAdmin

依赖项目

许可协议

该项目遵循 Apache2.0 许可协议。

Project details


Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distribution

fastapi_scheduler-0.0.4.tar.gz (6.3 kB view details)

Uploaded Source

Built Distribution

fastapi_scheduler-0.0.4-py3-none-any.whl (5.4 kB view details)

Uploaded Python 3

File details

Details for the file fastapi_scheduler-0.0.4.tar.gz.

File metadata

  • Download URL: fastapi_scheduler-0.0.4.tar.gz
  • Upload date:
  • Size: 6.3 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: python-requests/2.26.0

File hashes

Hashes for fastapi_scheduler-0.0.4.tar.gz
Algorithm Hash digest
SHA256 51208cc9cfcb19d38e7272a083f3431e1f6d10f587f9c5eb0940c90c1fde9713
MD5 e29863af13dc67242acf838ff66ba602
BLAKE2b-256 000a96142ea38711f0541db525b87e1779cf03ca1ad75516e7308bceee173da8

See more details on using hashes here.

File details

Details for the file fastapi_scheduler-0.0.4-py3-none-any.whl.

File metadata

File hashes

Hashes for fastapi_scheduler-0.0.4-py3-none-any.whl
Algorithm Hash digest
SHA256 a8b12e8205719e851c491fb8a773f58b1064a569220040522722400887e30385
MD5 12ca3a793c5fd9053962d7e7ff06c5ba
BLAKE2b-256 f016eab3f4d6c829fa18029d39c3396c77b4fcbcbe82a7a17aed283b12e9a675

See more details on using hashes here.

Supported by

AWS Cloud computing and Security Sponsor Datadog Monitoring Fastly CDN Google Download Analytics Pingdom Monitoring Sentry Error logging StatusPage Status page