Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Save harilee1325/eb580ff37e2943f5b252a3ad39b4f5bf to your computer and use it in GitHub Desktop.
Save harilee1325/eb580ff37e2943f5b252a3ad39b4f5bf to your computer and use it in GitHub Desktop.
from flask import Flask, render_template
app = Flask(__name__)
@app.route("/")
def album():
return render_template("album.html")
if __name__ == "__main__":
app.run(debug=True)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment