Skip to content

CheeseCake87/flask-imp

Repository files navigation

Flask-Imp 🧚

tests PyPI version License black

What is Flask-Imp?

Flask-Imp's main purpose is to help simplify the importing of blueprints, resources, and models. It has a few extra features built in to help with securing pages and password authentication.

Documentation

https://flask-imp.readthedocs.io/en/latest/

Getting Started

Install in a virtual environment

Install Flask-Imp

pip install flask-imp

Generate a Flask app

flask-imp init

Set up your environment

Create a new project folder and navigate to it.

# Linux
cd /path/to/project-folder

# Windows
cd C:\path\to\project-folder

Linux / MacOS

python3 -m venv venv
source venv/bin/activate

Windows

python -m venv venv
.\venv\Scripts\activate