Skip to content

Instantly share code, notes, and snippets.

@limbuu
Created July 13, 2020 15:19
Show Gist options
  • Save limbuu/dfd0f2c1221add0a0aa50a4e2183a946 to your computer and use it in GitHub Desktop.
Save limbuu/dfd0f2c1221add0a0aa50a4e2183a946 to your computer and use it in GitHub Desktop.
from flask import Flask
app = Flask(__name__)
@app.route('/')
def hello_world():
return 'Hello World! This is first commit!'
if __name__ == '__main__':
app.run(host='0.0.0.0')
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment