python - FastAPI Dev taking very long to start the server whereas uvicorn main:app --reload --port 8000 works - Stack Overflow

I have a very simple FastAPI server.from fastapi import FastAPIapp = FastAPI()@app.get("")

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条)

  • 暂无评论

联系我们

400-800-8888

在线咨询: QQ交谈

邮件:admin@example.com

工作时间:周一至周五,9:30-18:30,节假日休息

关注微信