Skip to content

Instantly share code, notes, and snippets.

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