Skip to main content

Create flask modules using a flask shell command

Project description

flask-bucket

Flask-Bucket is an extension that uses the flask command line interface to create a module inside your project directory. It comes in handy when operating in a flask application factory configuaration.

Installation

Run the following command to install:

$ Python pip install flask-bucket

Usage

  1. Import and initialize the package inside the create_app function.
  2. Import your module and register your blueprint object.
from flask_bucket import FlaskBucket 

def create_app():

    app = Flask(__name__)
    FlaskBucket(app)

    from .<module_name>.routes import <blueprint_name>
    app.registerblueprint(<blueprint_name>)

    return app

Initialize your module by running the make_module command from an interactive Python shell and specify the name of the directory. Note The package automatically produces a blueprint and a routes layout inside your routes.py file, located inside the module.

$ flask make_module <directory_name>

Developing flask-bucket

To install flask-bucket along with the tools you need to develop and run tests, run the following in your virtual enviroment.

$ pip install -e .[dev]

Project details


Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distribution

flask-bucket-0.0.1.tar.gz (7.1 kB view hashes)

Uploaded Source

Built Distribution

flask_bucket-0.0.1-py3-none-any.whl (3.7 kB view hashes)

Uploaded Python 3

Supported by

AWS AWS Cloud computing and Security Sponsor Datadog Datadog Monitoring Fastly Fastly CDN Google Google Download Analytics Microsoft Microsoft PSF Sponsor Pingdom Pingdom Monitoring Sentry Sentry Error logging StatusPage StatusPage Status page