Step : 1 - Create Folder for python web application.
Step : 2 - Create virtual environment.
Step : 3 - Activate virtual environment.
Step : 3.1 - Install uvicorn[standard] (Python Web Server)
Step : 3.2 - Install fastapi (Python Web Framework)
Step : 3.3 - Install jinja2 (Python Html template engine)
Step : 4 - Goto root project folder
cmd:/> cd python-fastapi-app-client
Step : 5 - Verify Application & Start uvicorn web application server using FastAPI Web Framework
cmd:/> uvicorn app_main:app --reload
Step : 6 - Create requirements.txt file for sharable project dependencies
cmd:/> pip freeze > requirements.txt