Browse Source

basic server

Davide Alberani 9 years ago
parent
commit
81b82dc797
1 changed files with 43 additions and 0 deletions
  1. 43 0
      eventman_server.py

+ 43 - 0
eventman_server.py

@@ -0,0 +1,43 @@
+#!/usr/bin/env python
+"""Event Man(ager)
+
+Your friendly manager of attendants at a conference.
+"""
+
+import os
+
+import tornado.httpserver
+import tornado.ioloop
+import tornado.options
+from tornado.options import define, options
+import tornado.web
+
+
+class MainHandler(tornado.web.RequestHandler):
+    def get(self):
+        self.write("Hello, world")
+
+
+def main():
+    define("port", default=5242, help="run on the given port", type=int)
+    define("config", help="read configuration file",
+            callback=lambda path: tornado.options.parse_config_file(path, final=False))
+    define("debug", default=False, help="run in debug mode")
+    tornado.options.parse_command_line()
+
+    application = tornado.web.Application([
+            (r"/", MainHandler),
+        ],
+        static_path=os.path.join(os.path.dirname(__file__), "static"),
+        debug=options.debug
+    )
+
+    http_server = tornado.httpserver.HTTPServer(application)
+    http_server.bind(options.port)
+    http_server.start(0)
+    tornado.ioloop.IOLoop.instance().start()
+
+
+if __name__ == '__main__':
+    main()
+