Guest User

Untitled

a guest
Feb 21st, 2018
65
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.17 KB | None | 0 0
  1. import flask
  2. from flask import *
  3.  
  4. app = Flask(__name__)
  5.  
  6. @app.route('/')
  7. def index():
  8. return 'Cara Kode!'
  9.  
  10. if __name__ == '__main__':
  11. app.run(debug=True, port=80)
Add Comment
Please, Sign In to add comment