from flask import Blueprint welcome=Blueprint('welcome', __name__, template_folder='templates') @welcome.route('/welcome') def home(): return "WELCOME TO FLASK APPLICATION"