Flask-Init!

Flask-Init extension provides support for creating Flask application with ease. This includes creating boilerplate code from hello world application to complex blueprint apps in Flask.

Installing Flask-Init

Install with pip and easy_install

pip install Flask-Init

Usage

Flask-Init works in a similar way to Flask itself. Comes with default optional commands that can able to create Flask application for you.

$ flask init

Options

--simple

Very simple flask application. Contains only one url endpoint that prints Hello World

--single-module

This is great for quick projects (like the ones used for tutorials), where you just need to serve a few routes and you’ve got less than a few hundred lines of application code.