Skip to content

Instantly share code, notes, and snippets.

@felipebastosweb
Created November 4, 2016 04:01
Show Gist options
  • Select an option

  • Save felipebastosweb/b400c6b22a3b74f887c14fe8e5707d77 to your computer and use it in GitHub Desktop.

Select an option

Save felipebastosweb/b400c6b22a3b74f887c14fe8e5707d77 to your computer and use it in GitHub Desktop.
from flask import Flask,jsonify
app = Flask(__name__)
@app.route("/")
def hello():
return "Hello World!"
if __name__ == "__main__":
app.run(
host="0.0.0.0",
port=int("8080")
)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment