Skip to content

Instantly share code, notes, and snippets.

@vihar
Last active May 24, 2018 10:01
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/0594850511b46554755b8a6f535e0bcf to your computer and use it in GitHub Desktop.
Save vihar/0594850511b46554755b8a6f535e0bcf to your computer and use it in GitHub Desktop.
from flask import Flask
app = Flask(__name__)
@app.route('/hello/<name>')
def hello(name=”Stark”):
return render_template('index.html', name=name)
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