from flask import Blueprint mtest_app=Blueprint('mtest_app', __name__) @mtest_app.route('/mtest') def mtest_home(): return {'hello': 'world'}