pythonasyncioapiasyncfastapiframeworkjsonjson-schemaopenapiopenapi3pydanticpython-typespython3redocreststarletteswaggerswagger-uiuvicornweb
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
8 lines
162 B
8 lines
162 B
"""
|
|
New configuration module for FastAPI
|
|
"""
|
|
|
|
# New feature: Rate limiting
|
|
RATE_LIMIT_ENABLED = True
|
|
RATE_LIMIT_MAX_REQUESTS = 100
|
|
RATE_LIMIT_WINDOW_SECONDS = 60
|
|
|