I have a very simple FastAPI server.
from fastapi import FastAPI
app = FastAPI()
@app.get("/")
def read_root():
return {"message": "Hello, World!"}
@app.get("/items/{item_id}")
def read_item(item_id: int, q: str = None):
return {"item_id": item_id, "q": q}
@app.post("/items/")
def create_item(item: dict):
return {"message": "Item created", "item": item}
When I try to start the server using the following command, the terminal just gets stuck and nothing happens. Im unable to ctrl + c
out of the terminal as well and all I can do is to kill the terminal process.
fastapi dev main.py --port 8001
On the other hand, if I was to start the same server using
uvicorn main:app --reload --port 8001
The terminal responded immediately and my server spun up as per normal. Can I know if anybody knows the cause for this issue.
发布者:admin,转转请注明出处:http://www.yc00.com/questions/1744087606a4556469.html
评论列表(0条)