Skip to content

Instantly share code, notes, and snippets.

@dradecic
Created August 25, 2019 09:12
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 dradecic/c63cc8211a19a9087e438509ef8d2f02 to your computer and use it in GitHub Desktop.
Save dradecic/c63cc8211a19a9087e438509ef8d2f02 to your computer and use it in GitHub Desktop.
Python-Bokeh - Gist 3: Basic Flask Config
app = Flask(__name__)
@app.route('/')
def chart():
return render_template('index.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