Skip to main content

Reusable utilities for FastAPI

Project description

🎨⚡️🔥 Reusable Utilities for FastAPI


Package version PyPI - Python Version PyPI - Python Version


Features:

  • Repeat At / Every for scheduling cron jobs
  • TTL LRU Cache
  • Timing Middleware that logs you the time taken by a request
  • Session Middleware
  • CLI tool to generate skeleton

Source Code: https://github.com/priyanshu-panwar/fastapi-utilities
Youtube Link: Click Here

Inspired From: dmontagu/fastapi-utils


[✨Update✨] How to use with Latest FastAPI version

With the latest FastAPI version, on_event lifespan functions are depreceated. Here is the official doc. We need to make use of asynccontextmanager with the latest fastapi.

Here is an example how to use lifespan (Repeated Tasks) functions with latest fastapi:

from fastapi import FastAPI
from contextlib import asynccontextmanager
from fastapi_utilities import repeat_every, repeat_at

@asynccontextmanager
async def lifespan(app: FastAPI):
    # --- startup ---
    await test()
    test2()
    yield
    # --- shutdown ---

app = FastAPI(lifespan=lifespan)

# Repeat Every Example
@repeat_every(seconds=2)
async def test():
    print("test")

# Repeat At Example
@repeat_at(cron="* * * * *")
def test2():
    print("test2")

Only difference is to call our tasks from lifespan function instead of using on_event function.


[🔥New🔥] TTL LRU CACHE

We have introduced ttl_lru_cache now in our library.

How to use

from fastapi_utilities import ttl_lru_cache

@ttl_lru_cache(ttl=2, max_size=128)
def sum(a: int, b: int) -> int:
    return a + b

sum(1, 3)
sum(1, 3)

[🔥New🔥] FastAPI CLI Tool

With our CLI Tool you can get a skeleton project built to get you started with the code.

How to use

  • Using poetry: poetry run cli init
  • Using pip: python3 -m cli init

Features

This package includes a number of utilities to help reduce boilerplate and reuse common functionality across projects:

  • 🕒Repeated Tasks: Easily trigger periodic tasks on server startup using repeat_every.

from fastapi_utilities import repeat_every

@router.on_event('startup')
@repeat_every(seconds=3)
async def print_hello():

    print("hello")
  • 👷Cron Jobs: Easily trigger cron jobs on server startup using repeat_at by providing a cron expression.

from fastapi_utilities import repeat_at

@router.on_event("startup")
@repeat_at(cron="*/2 * * * *") #every 2nd minute
async def hey():
    print("hey")

  • 🕒Timer Middleware: Add a middleware to the FastAPI app that logs the time taken to process a request. Optionally, also logs the average response time.The average response time is reset after every (reset_after)100,000 requests.

import asyncio
from fastapi import FastAPI, Request
from fastapi_utilities import add_timer_middleware

app = FastAPI()
add_timer_middleware(app, show_avg=True)


@app.get("/")
def read_root():
    return {"message": "Hello, World!"}

Response Logs:

INFO:     (fastapi-utilities) "GET - /" :: Time Taken :: 0.97 ms
INFO:     :: Average Response Time :: 0.97 ms
  • Cached Sessions: Now use cached sessions along with context manager instead of get_db.
from fastapi import FastAPI
from .db import Base, engine
from fastapi_utilities import FastAPISessionMaker, repeat_every
from .models import User
import random

app = FastAPI()
Base.metadata.create_all(bind=engine)

session_maker = FastAPISessionMaker("sqlite:///db.sqlite3")


@app.on_event("startup")
@repeat_every(seconds=5, raise_exceptions=True)
async def startup():
    print("Starting up...")
    with session_maker.context_session() as session:
        x = User(id=random.randint(0, 10000))
        session.add(x)
    print("Startup complete!")


Requirements

This package is intended for use with any recent version of FastAPI and Python 3.7+.

Installation

pip install fastapi-utilities

License

This project is licensed under the terms of the MIT license.

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_utilities-0.3.1.tar.gz (10.0 kB view details)

Uploaded Source

Built Distribution

If you're not sure about the file name format, learn more about wheel file names.

fastapi_utilities-0.3.1-py3-none-any.whl (15.9 kB view details)

Uploaded Python 3

File details

Details for the file fastapi_utilities-0.3.1.tar.gz.

File metadata

  • Download URL: fastapi_utilities-0.3.1.tar.gz
  • Upload date:
  • Size: 10.0 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/6.1.0 CPython/3.9.21

File hashes

Hashes for fastapi_utilities-0.3.1.tar.gz
Algorithm Hash digest
SHA256 2b52e4825f6cc3c546562f9b0b062d48a8b9867de97dd37795a2d2839003f43b
MD5 bcf0221022673985c40719ec666ee19f
BLAKE2b-256 c05fac62f88b881c3190ad49805a869e2b7d21ec9ac7bcf5287faeb513bca213

See more details on using hashes here.

File details

Details for the file fastapi_utilities-0.3.1-py3-none-any.whl.

File metadata

File hashes

Hashes for fastapi_utilities-0.3.1-py3-none-any.whl
Algorithm Hash digest
SHA256 86a3ee7918930cb4010803b76d944e8656cf53076d2fd618440966f74fadc733
MD5 2ef6391dd875df5a25c0baeba8ff6815
BLAKE2b-256 a2105e705cad3a375a1c38be9ef4320f1ecbee82311896fb878bd8f4229e4a2b

See more details on using hashes here.

Supported by

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