This repository has been archived on 2021-09-15. You can view files and clone it, but cannot push or open issues or pull requests.
DUT2PTUT/superTornado.py

33 lines
813 B
Python

import tornado.ioloop
import tornado.web
import tornado.httpserver
confAveug = False
class MainHandler(tornado.web.RequestHandler):
def get(self):
self.render("index.html")
def post(self):
iden = self.get_argument("id","")
mdp = self.get_argument("mdp","")
self.write("Le pseudo est :")
self.write(iden)
application = tornado.web.Application([
(r"/", MainHandler),
])
if __name__ == "__main__":
#chargement congig
confAveug = hand.estAveugle()
if confAveug == True:
print "->Blind unhabitant system configuration"
else :
print "->Not blind unhabitant system configuration"
http_server = tornado.httpserver.HTTPServer(application)
http_server.listen(80)
tornado.ioloop.IOLoop.instance().start()