Skip to content

Instantly share code, notes, and snippets.

@limbuu
Last active July 13, 2020 15:37
Show Gist options
  • Save limbuu/e4f5f1756d3c64170001775e450cdc82 to your computer and use it in GitHub Desktop.
Save limbuu/e4f5f1756d3c64170001775e450cdc82 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