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
- Import and initialize the package inside the create_app function.
- 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
Release history Release notifications | RSS feed
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
Built Distribution
Filter files by name, interpreter, ABI, and platform.
If you're not sure about the file name format, learn more about wheel file names.
Copy a direct link to the current filters
File details
Details for the file flask-bucket-0.0.1.tar.gz.
File metadata
- Download URL: flask-bucket-0.0.1.tar.gz
- Upload date:
- Size: 7.1 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/3.4.1 importlib_metadata/4.0.1 pkginfo/1.7.0 requests/2.24.0 requests-toolbelt/0.9.1 tqdm/4.60.0 CPython/3.7.4
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
6bc76a94980ca07f87c95dd6c67cab3880a4d09a210b99b905523ba43c8075ca
|
|
| MD5 |
b6784a8fb517f56c6f29aab7ab04fb37
|
|
| BLAKE2b-256 |
08805ee8b8db47707fcb3ec6be0472eab1824d69f62b280c835f2525c3210181
|
File details
Details for the file flask_bucket-0.0.1-py3-none-any.whl.
File metadata
- Download URL: flask_bucket-0.0.1-py3-none-any.whl
- Upload date:
- Size: 3.7 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/3.4.1 importlib_metadata/4.0.1 pkginfo/1.7.0 requests/2.24.0 requests-toolbelt/0.9.1 tqdm/4.60.0 CPython/3.7.4
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
98c44c12c557c479636f608832291aded1103b7f3f4e694104244fddd490b94f
|
|
| MD5 |
b65713f5cab18b768381b684107ee17a
|
|
| BLAKE2b-256 |
3eb8edb335cb650bc70ec58bba946b47248ae9fc43a32afbf1a09c633ed08a55
|