Advertisement
Guest User

holamundo

a guest
Feb 24th, 2020
74
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.17 KB | None | 0 0
  1. from flask import Flask
  2. app = Flask(__name__)
  3. @app.route('/')
  4. def hello_world():
  5. return "Hello World!"
  6. if __name__ == '__main__':
  7. app.run(debug=True,host='0.0.0.0')
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement