Created
June 25, 2013 15:04
-
-
Save mattupstate/5859194 to your computer and use it in GitHub Desktop.
Register all Blueprint instances on the specified Flask application found in all modules for the specified package
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| # -*- coding: utf-8 -*- | |
| """ | |
| helpers | |
| ~~~~~~~ | |
| helpers module | |
| """ | |
| import pkgutil | |
| import importlib | |
| from flask import Blueprint | |
| def register_blueprints(app, package_name, package_path): | |
| """Register all Blueprint instances on the specified Flask application found | |
| in all modules for the specified package. | |
| :param app: the Flask application | |
| :param package_name: the package name | |
| :param package_path: the package path | |
| """ | |
| rv = [] | |
| for _, name, _ in pkgutil.iter_modules(package_path): | |
| m = importlib.import_module('%s.%s' % (package_name, name)) | |
| for item in dir(m): | |
| item = getattr(m, item) | |
| if isinstance(item, Blueprint): | |
| app.register_blueprint(item) | |
| rv.append(item) | |
| return rv |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Thanks.