article

Showing posts with label Python-FastAPI. Show all posts
Showing posts with label Python-FastAPI. Show all posts

Thursday, February 24, 2022

Python FastAPI How to install

Python FastAPI How to install

https://fastapi.tiangolo.com/

C:\fastAPI>pip --version
pip 21.3.1 from c:\python36\lib\site-packages\pip (python 3.6)

C:\fastAPI>pip install fastapi
C:\fastAPI>pip install "uvicorn[standart]"
C:\fastAPI>uvicorn main:app --reload

http://127.0.0.1:8000/items/50?q=somequery



Related Post