Skip to content

Instantly share code, notes, and snippets.

@splitline
Created October 4, 2018 10:32
Show Gist options
  • Save splitline/3955fbbf6ec3acb6c637a7620d30e224 to your computer and use it in GitHub Desktop.
Save splitline/3955fbbf6ec3acb6c637a7620d30e224 to your computer and use it in GitHub Desktop.
from flask import Flask
app = Flask(__name__)
@app.route('/')
def hello_world():
return 'Hello World’
if __name__ == '__main__':
app.run()
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment