from flask import Blueprint accounts = Blueprint('accounts', __name__, template_folder='templates', url_prefix='/accounts') # Placed here to avoid circular import error from accounts import views