Skip to content

Instantly share code, notes, and snippets.

@mishin
Created April 21, 2019 10:04
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 mishin/bc590abf9df3aaf4914b05b728727419 to your computer and use it in GitHub Desktop.
Save mishin/bc590abf9df3aaf4914b05b728727419 to your computer and use it in GitHub Desktop.
from flask import Flask
app = Flask(__name__)
@app.route('/')
def hello_world():
return 'Hello World!\n'
if __name__ == '__main__':
app.run(debug=True, host='0.0.0.0')
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment