This repository explains how to create Microservices using FastAPI
Complete Explanation is available in below link:
####### Create Python Virtual Environment and install all dependencies as follows ######
create venv using command: python -m venv venvname
activate venv: venvname\Scripts\Activate
install dependencies: pip install -r requirements.txt
run using: uvicorn main:app --reload