<aside> 💡 This is summary of what I learned about FastAPI!

</aside>

<aside> 💡 Summary:

📚 Set up and Basic Rules

From FastAPI Doc : Set up

Create virtual environment first, and then install FastAPI.

You can create virtual environment tools such as Python include virtualenv, pipenv, pyenv, virtualenvwrapper, and pyenv-virtualenv.

Make sure to not forget which folder you’ve created the venv! I always look for it hehe.

image.png

image.png

And here is the link for set up the venv

https://fastapi.tiangolo.com/virtual-environments/#upgrade-pip

image.png

From FastAPI Doc : Basic Rules

Create main.py and then We’re gonna check it if it works

image.png