from flask import create_blueprint bp = create_blueprint("hmm") @bp.route("/") def index (): return "hello world"