How can I run the fast-api server using Pycharm?

22,637

Solution 1

Method-1: Run FastAPI by calling uvicorn.run(...)

In this case, your minimal code will be as follows,

# main.py

import uvicorn
from fastapi import FastAPI

app = FastAPI()


@app.get("/")
async def read_root():
    return {"Hello": "World"}


if __name__ == "__main__":
    uvicorn.run(app, host="0.0.0.0", port=8000)

Normally, you'll start the server by running the following command,

python main.py

Pycharm Setup

For this setup, and now, you can set the script path in Pycharm's config

Pycharm-uvicorn.run

Notes

  • Script Path: path to the FastAPI script
  • Python Interpreter: Choose your interpreter/virtual environment
  • Working Directory: Your FastAPI project root

Method-2: Run FastAPI by calling uvicorn command

In this case, your minimal code will be as follows,

# main.py

from fastapi import FastAPI

app = FastAPI()


@app.get("/")
async def read_root():
    return {"Hello": "World"}

Normally, you'll start the server by running the following command,

uvicorn main:app --reload

Pycharm Setup

For this setup, and now, you can set the script path in Pycharm's config

Pycharm-uvicorn.command

Notes

  • Module name: set to uvicorn
  • [Optional] Script: Path to uvicorn binary. You will get the path by executing the command, which uvicorn , inside your environment. (See this image)
  • Parameters: The actual parameters of uvicorn command
  • Python Interpreter: Choose your interpreter/virtual environment
  • Working Directory: Your FastAPI project root

Solution 2

You can do it without adding code to main.py

  1. In target to run instead of Script path choose Module name
  2. In Module name type uvicorn
  3. In parameters app.main:app --reload --port 5000

enter image description here

Solution 3

Try to call uvicorn inside your code. e.g:

from fastapi import FastAPI
import uvicorn

app = FastAPI()


@app.get("/")
async def read_root():
    return {"Hello": "World"}

if __name__ == "__main__":
    uvicorn.run(app, host="0.0.0.0", port=5000, log_level="info")

Reference

Share:
22,637
JPG
Author by

JPG

Copied, but a fact! An answer a day, keeps dementia away.

Updated on July 08, 2022

Comments

  • JPG
    JPG almost 2 years

    I have a simple API function as below,

    from fastapi import FastAPI
    
    app = FastAPI()
    
    
    @app.get("/")
    async def read_root():
        return {"Hello": "World"}
    

    I am starting the server using uvicorn command as,

    uvicorn main:app
    

    Since we are not calling any python file directly, it is not possible to call uvicorn command from Pycharm.

    So, How can I run the fast-api server using Pycharm?

  • GregH
    GregH almost 4 years
    The problem is that you can't deploy to production this way because you can't really pass other parameters to uvicorn...say "workers", etc. At least I can't get it to work.
  • JPG
    JPG almost 4 years
    Also, this is not for production. Suppose if you want to update the number of workers, you need to update your code, which is of course not a good idea. That's why unicorn supports the commandline setup.
  • JPG
    JPG almost 4 years
    BTW, the uvicorn.run(...) supports all the args supported by the commandline
  • Timothy Mugayi
    Timothy Mugayi over 3 years
    You can pass in args via pycharm and dynamically configure uvicorn all args supported via config = Config(app, **kwargs)
  • JPG
    JPG over 3 years
    Could you explain why that matter here? Sorry that I didn't get your point @TimothyMugayi
  • Tobias Feil
    Tobias Feil about 3 years
    Awesome, couln't find an answer anywhere else on how to debug AND reload at the same time
  • James
    James about 3 years
    This is the best answer in my opinion as it is the only one that lets you use --reload
  • Borko Rastović
    Borko Rastović almost 3 years
    I was looking for this solution for the past 2 (two) years now :)
  • mLstudent33
    mLstudent33 almost 3 years
    Is running on 0.0.0.0 safe? I'm a novice but someone might have told me at some point, "don't do that". I changed it to localhost and it works.
  • Coco
    Coco almost 3 years
    this results in the fastapi_demo to be run twice. If you have a (for example) global variable it will be initialized
  • Suyog Shimpi
    Suyog Shimpi almost 3 years
    Thanks, @Coco to identify my mistake. It was running twice just because of misconfiguration. Actually, I have added reload=True and it leads to double initialization. To avaid that you must add reload_dirs=['/app_dir_name',]. But, this approach is not wrong to run app by PyCharm. Check this FYI
  • Coco
    Coco over 2 years
    you would need to run uvicorn.run(app) instead, that'd not start the app twice