Skip to content

Instantly share code, notes, and snippets.

@vihar
Created May 24, 2018 10:30
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save vihar/1e20473791ff746c28ba92ff97e9192b to your computer and use it in GitHub Desktop.
Save vihar/1e20473791ff746c28ba92ff97e9192b to your computer and use it in GitHub Desktop.
from flask import Flask, render_template
app = Flask(__name__)
@app.route('/hello')
def hello():
return render_template('index.html', name="Alex")
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