Skip to content

Instantly share code, notes, and snippets.

@Kd-Here

Kd-Here/views.py Secret

Created March 4, 2023 09:51
Show Gist options
  • Save Kd-Here/a11f2e25b89a9669a88e069cb08062e4 to your computer and use it in GitHub Desktop.
Save Kd-Here/a11f2e25b89a9669a88e069cb08062e4 to your computer and use it in GitHub Desktop.
from flask import Blueprint,render_template
views = Blueprint('views',__name__)
@views.route('/')
def home():
return render_template('home.html')
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment