Advertisement
Guest User

Untitled

a guest
Jul 17th, 2019
76
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.18 KB | None | 0 0
  1. from flask import Flask
  2.  
  3. app = Flask(__name__)
  4.  
  5. @app.route('/')
  6.  
  7. def enter():
  8. return 'Welcome to the container training'
  9.  
  10. if __name__ == '__main__':
  11. app.run(host='0.0.0.0')
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement