Skip to content

Forum in maintenance, we will back soon 🙂

FastAPI and UVICORN...
 
Notifications
Clear all

FastAPI and UVICORN server tip or trick

2 Posts
2 Users
1 Reactions
725 Views
SSAdvisor
(@ssadvisor)
Posts: 1127
Noble Member
Topic starter
 

I discovered, a trick that will make my life easier and I thought I'd share. Put this at the end of your main app file to automate the start of the server when you click the run button in your IDE.

from fastapi import FastAPI
...
app = FastAPI()
...

if __name__ == "__main__":
    import uvicorn
    uvicorn.run(app)

 

Regards,
Earnie Boyd, CEO
Seasoned Solutions Advisor LLC
Schedule 1-on-1 help
Join me on Slack

 
Posted : 05/31/2023 11:59 pm
Hasan Aboul Hasan
(@admin)
Posts: 1185
Member Admin
 

Nice! thanks for sharing

 
Posted : 06/01/2023 7:39 am
Share:
[the_ad_group id=”312″]