内容简介:写多了是不是非常简单?如果有一些下面是实现:
写多了 from controllers.xxx import xxx
, app.register_blueprint(xxx)
就想偷懒。
于是就仿照 unittest
的实现思路来做了一个自动加载 Blueprint
的工具。使用方法如下:
from loadbp import load_bp app = Flask(__name__, template_folder="templates") load_bp(app)
是不是非常简单?如果有一些 Blueprint
暂时还不想加载,那么设置一个属性 _DO_NOT_LOAD_BP
即可。例如:
$ grep _DO_NOT_LOAD_BP controllers/* controllers/issue.py:_DO_NOT_LOAD_BP = True controllers/user.py:_DO_NOT_LOAD_BP = True
下面是实现:
import logging
import glob
import importlib
from flask import Blueprint, Flask
app = Flask(__name__)
def load_bp(app, path="controllers/**/*.py"):
for file_path in glob.glob(path, recursive=True):
module_name = file_path.split(".")[0].replace("/", ".")
try:
module = importlib.import_module(module_name)
if "__init__" in file_path:
continue
if hasattr(module, "_DO_NOT_LOAD_BP"):
logging.warn("ignore module %s because of attribute _DO_NOT_LOAD_BP settled", module_name)
continue
for attr_name in dir(module):
attr = getattr(module, attr_name)
if isinstance(attr, Blueprint):
logging.info("register %s to flask", attr_name)
app.register_blueprint(attr)
except AttributeError:
logging.error("failed to load module %s", module_name)
以上所述就是小编给大家介绍的《Flask自动加载Blueprint》,希望对大家有所帮助,如果大家有任何疑问请给我留言,小编会及时回复大家的。在此也非常感谢大家对 码农网 的支持!
猜你喜欢:- 介绍同步加载、异步加载、延迟加载[原创]
- .net加载失败的程序集重新加载
- 虚拟机类加载机制:类加载时机
- 探秘类加载器和类加载机制
- hibernate中加载策略+批加载+懒加载异常【原创】
- [译] React 16.6 懒加载(与预加载)组件
本站部分资源来源于网络,本站转载出于传递更多信息之目的,版权归原作者或者来源机构所有,如转载稿涉及版权问题,请联系我们。
Distributed Algorithms
Nancy A. Lynch / Morgan Kaufmann / 1996-3-15 / USD 155.00
In "Distributed Algorithms", Nancy Lynch provides a blueprint for designing, implementing, and analyzing distributed algorithms. She directs her book at a wide audience, including students, programmer......一起来看看 《Distributed Algorithms》 这本书的介绍吧!