modifié: superTornado.py
This commit is contained in:
parent
9c7911b465
commit
8b16109e3a
@ -1,6 +1,7 @@
|
|||||||
import tornado.ioloop
|
import tornado.ioloop
|
||||||
import tornado.web
|
import tornado.web
|
||||||
import tornado.httpserver
|
import tornado.httpserver
|
||||||
|
from loadConf import *
|
||||||
|
|
||||||
confAveug = False
|
confAveug = False
|
||||||
|
|
||||||
@ -22,11 +23,13 @@ application = tornado.web.Application([
|
|||||||
|
|
||||||
if __name__ == "__main__":
|
if __name__ == "__main__":
|
||||||
#chargement congig
|
#chargement congig
|
||||||
|
hand = LoadConf()
|
||||||
confAveug = hand.estAveugle()
|
confAveug = hand.estAveugle()
|
||||||
if confAveug == True:
|
if confAveug == True:
|
||||||
print "->Blind unhabitant system configuration"
|
print "->Blind unhabitant system configuration"
|
||||||
else :
|
else :
|
||||||
print "->Not blind unhabitant system configuration"
|
print "->Not blind unhabitant system configuration"
|
||||||
|
|
||||||
http_server = tornado.httpserver.HTTPServer(application)
|
http_server = tornado.httpserver.HTTPServer(application)
|
||||||
http_server.listen(80)
|
http_server.listen(80)
|
||||||
tornado.ioloop.IOLoop.instance().start()
|
tornado.ioloop.IOLoop.instance().start()
|
||||||
|
Reference in New Issue
Block a user