معرفی شرکت ها


fastapi-idempotent-0.0.3


Card image cap
تبلیغات ما

مشتریان به طور فزاینده ای آنلاین هستند. تبلیغات می تواند به آنها کمک کند تا کسب و کار شما را پیدا کنند.

مشاهده بیشتر
Card image cap
تبلیغات ما

مشتریان به طور فزاینده ای آنلاین هستند. تبلیغات می تواند به آنها کمک کند تا کسب و کار شما را پیدا کنند.

مشاهده بیشتر
Card image cap
تبلیغات ما

مشتریان به طور فزاینده ای آنلاین هستند. تبلیغات می تواند به آنها کمک کند تا کسب و کار شما را پیدا کنند.

مشاهده بیشتر
Card image cap
تبلیغات ما

مشتریان به طور فزاینده ای آنلاین هستند. تبلیغات می تواند به آنها کمک کند تا کسب و کار شما را پیدا کنند.

مشاهده بیشتر
Card image cap
تبلیغات ما

مشتریان به طور فزاینده ای آنلاین هستند. تبلیغات می تواند به آنها کمک کند تا کسب و کار شما را پیدا کنند.

مشاهده بیشتر

توضیحات

API Idempotent requests
ویژگی مقدار
سیستم عامل -
نام فایل fastapi-idempotent-0.0.3
نام fastapi-idempotent
نسخه کتابخانه 0.0.3
نگهدارنده []
ایمیل نگهدارنده []
نویسنده Gin1632
ایمیل نویسنده vothien1632@gmail.com
آدرس صفحه اصلی -
آدرس اینترنتی https://pypi.org/project/fastapi-idempotent/
مجوز -
# fastapi-idempotent ### How to use package fastapi-idempotent ```bash # Install package using poetry poetry add fastapi-idempotent # Using pip pip install fastapi-idempotent ``` ### Set rate limit for FastAPI before starting server Example code - main.py ```bash # Import package from fastapi import FastAPI from fastapi_idempotent import IdempotentMiddleWare from core.config import settings # settings is class, where the configuration parameters are saved from api.responses import JSONResponse ... # Setup FastAPI app = FastAPI( title=settings.PROJECT_NAME, version=settings.API_VERSION, openapi_url=f"{settings.API_V1_PATH}/openapi.json", default_response_class=JSONResponse, ) ``` ### Set idempotent for FastAPI - Using redis storage ```bash # Default idempotent expired is 10800s app.add_middleware( IdempotentMiddleWare, redis_url=settings.IDEMPOTENT_STORAGE_URL, # type: str ) ``` or ```bash app.add_middleware( IdempotentMiddleWare, idempotent_expired=settings.IDEMPOTENT_EXPIRED, # type: int redis_url=settings.IDEMPOTENT_STORAGE_URL, # type: str ) ``` - Using memory storage ```bash # Default idempotent expired is 10800s app.add_middleware( IdempotentMiddleWare, testing=True, # type: bool ) ``` or ```bash app.add_middleware( IdempotentMiddleWare, idempotent_expired=settings.IDEMPOTENT_EXPIRED, # type: int testing=True, # type: bool ) ```


نیازمندی

مقدار نام
>=0.19.1 starlette
- pydantic
- aioredis


نحوه نصب


نصب پکیج whl fastapi-idempotent-0.0.3:

    pip install fastapi-idempotent-0.0.3.whl


نصب پکیج tar.gz fastapi-idempotent-0.0.3:

    pip install fastapi-idempotent-0.0.3.tar.gz