Skip to content

Instantly share code, notes, and snippets.

@davegotz
Created April 23, 2019 15:02
Show Gist options
  • Select an option

  • Save davegotz/fcf8fccd4fb110f31bf553498c89b910 to your computer and use it in GitHub Desktop.

Select an option

Save davegotz/fcf8fccd4fb110f31bf553498c89b910 to your computer and use it in GitHub Desktop.
__author__ = 'David Gotz, gotz@unc.edu, Onyen = gotz'
from flask import Flask
app = Flask(__name__)
@app.route("/hello")
@app.route("/")
def hello():
print("Hello world is about to be returned!")
return "Hello, World!"
app.run()
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment