Skip to content

Latest commit

 

History

History
28 lines (18 loc) · 472 Bytes

README.md

File metadata and controls

28 lines (18 loc) · 472 Bytes

Blurr - API

Python

Look at the Python documentation to learn more.

Setup

Make sure to install the dependencies:

# Create a Virtual Environment
python3 -m venv venv

# Activate the Virtual Environment
source venv/bin/activate

# Install Dependencies
pip install -r requirements.txt

Development Server

Start the development server on http://localhost:8000/docs:

# fastapi
fastapi dev main.py