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.
1.1 KiB
1.1 KiB
name | about | title | labels | assignees |
---|---|---|---|---|
Bug report | Create a report to help us improve | [BUG] | bug |
Describe the bug
Write here a clear and concise description of what the bug is.
To Reproduce
Steps to reproduce the behavior with a minimum self-contained file.
Replace each part with your own scenario:
- Create a file with:
from fastapi import FastAPI
app = FastAPI()
@app.get("/")
def read_root():
return {"Hello": "World"}
- Open the browser and call the endpoint
/
. - It returns a JSON with
{"Hello": "World"}
. - But I expected it to return
{"Hello": "Sara"}
.
Expected behavior
Add a clear and concise description of what you expected to happen.
Screenshots
If applicable, add screenshots to help explain your problem.
Environment
- OS: [e.g. Linux / Windows / macOS]
- FastAPI Version [e.g. 0.3.0], get it with:
python -c "import fastapi; print(fastapi.__version__)"
- Python version, get it with:
python --version
Additional context
Add any other context about the problem here.