Skip to content

Instantly share code, notes, and snippets.

@xiantail
Created December 25, 2015 12:57
Show Gist options
  • Save xiantail/b1f74b02df5ca9f2cb61 to your computer and use it in GitHub Desktop.
Save xiantail/b1f74b02df5ca9f2cb61 to your computer and use it in GitHub Desktop.
Introducing Python / Chapter 9 - Flask
from flask import Flask
app = Flask(__name__, static_folder='.', static_url_path='')
@app.route('/')
def home():
return app.send_static_file('index.html')
@app.route('/echo/<thing>')
def echo(thing):
return thing
app.run(port=9999, debug=True)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment