FastAPI Sample Project

This project is about Python FastAPI implementation

Authors

Create Virtual Environment

    python -m venv venv
    . venv/bin/activate or source venv/bin/activate

Install Dependencies

Installation

nstall fastapi with pip install fastapi / pip3 install fastapi

    pip install fastapi

Install other libraries from requirements.txt

    pip install -r requirements.txt

Run Locally

Clone the Project

    git clone https://github.com/kumarvmsathish/fastapi

Go to project directory

    cd L1

Run Application with uvicorn : --reload

    uvicorn main:app --reload

Run spcific module app

    uvicorn blog.main:app --reload