Advertisement
themoosemind

/home/moose/hwrtapp/main.py

Feb 8th, 2015
565
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Python 0.19 KB | None | 0 0
  1. from flask import Flask
  2. app = Flask(__name__)
  3.  
  4. app.route("/")
  5. def hello():
  6.     return "Holy moly that tunnel was bright.. said Bit to NIC"
  7.  
  8. if __name__ == "__main__":
  9.     app.run()
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement