fastapi-utilities
fastapi-utilities copied to clipboard
🎨⚡️🔥 Reusable Utilities for FastAPI
The examples on how to use the repeat annotations seem to be broken, as `repeat.repeat_every` and `repeat.repeat_at` are modules, not objects. ## Steps to replicate 1. Set up a new...
I am using pydantic 2.3.0 and it seems it is not compatible with fastapi-utilities 0.2.0.
Seems like the code is identical to these repositories. What's going on in here? Are there any original authors mentioned in the license file? Mentioned repositories: https://github.com/dmontagu/fastapi-utils https://github.com/yuval9313/fastapi-restful
Bumps [certifi](https://github.com/certifi/python-certifi) from 2023.7.22 to 2024.7.4. Commits bd81538 2024.07.04 (#295) 06a2cbf Bump peter-evans/create-pull-request from 6.0.5 to 6.1.0 (#294) 13bba02 Bump actions/checkout from 4.1.6 to 4.1.7 (#293) e8abcd0 Bump pypa/gh-action-pypi-publish from...
Trying to run example with _async_ `repeat_at` function. ``` from fastapi import FastAPI from contextlib import asynccontextmanager from fastapi_utilities import repeat_every, repeat_at @asynccontextmanager async def lifespan(app: FastAPI): # --- startup...