-
Notifications
You must be signed in to change notification settings - Fork 25
Expand file tree
/
Copy pathserver.py
More file actions
36 lines (31 loc) · 953 Bytes
/
Copy pathserver.py
File metadata and controls
36 lines (31 loc) · 953 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
#!/usr/bin/env python
# coding=utf-8
'''
desc: 主服务
author: jsongo
'''
import tornado.web
import tornado.ioloop
import tornado.options
from tornado.options import define, options
from handlers.webSocketHandler import MainSocket
define("port", default=8080, help="run on the given port", type=int)
class Application(tornado.web.Application):
def __init__(self):
handlers = [
(r"/websocket", MainSocket),
# (r"/room", RoomHandler), # 用http请求的方式
# (r"/dig", AnswerHandler),# 用http请求的方式
]
settings = dict(
# cookie_secret="7c1LG3yZhzMJ",
# xsrf_cookies=True,
)
tornado.web.Application.__init__(self, handlers, **settings)
def main():
tornado.options.parse_command_line()
app = Application()
app.listen(options.port)
tornado.ioloop.IOLoop.instance().start()
if __name__ == "__main__":
main()