Skip to content

Instantly share code, notes, and snippets.

@igoralves1
Last active August 14, 2019 13:36
Show Gist options
  • Save igoralves1/b9687c8cdb57801205b07c212308eb69 to your computer and use it in GitHub Desktop.
Save igoralves1/b9687c8cdb57801205b07c212308eb69 to your computer and use it in GitHub Desktop.
flask
# https://www.youtube.com/watch?v=r40pC9kyoj0&t=211s
from flask import Flask
app = Flask(__name__)
@app.route("/")
def hello():
return "Hello World!"
if __name__ == '__main__':
app.run(host='0.0.0.0', port=80)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment