Just a simple blog in fast api to understand and learn more about creating apis with fast api
To create a python virtual env use
virtualenv venv
after the creating the virtual env you need activate the virtual env by runninh simple command line
source venv/bin/activate
after activating the virtual env
pip install -r requirements.txt
this will install the dependencies
To run the application
type
uvicorn blog.main:app --reload
this will fire up the application