加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
文件
该仓库未声明开源许可证文件(LICENSE),使用请关注具体项目描述及其代码上游依赖。
克隆/下载
server.py 830 Bytes
一键复制 编辑 原始数据 按行查看 历史
z306223558 提交于 2015-09-22 14:45 . initalize
#!/usr/bin/env python
#coding:utf-8
import tornado.ioloop
import tornado.options
import tornado.httpserver
from pymongo import MongoClient
from application import application
#初始化启动信息,包括了数据库的启动配置
from tornado.options import define, options
#绑定tornado实例到那个端口,默认位8000
define("port", default=8000, help="run on the given port", type=int)
#下面是db的配置信息
def main():
tornado.options.parse_command_line()
http_server = tornado.httpserver.HTTPServer(application,xheaders=True)
http_server.listen(options.port)
print('Development server is running at http://127.0.0.1:%s/' % options.port)
print('Quit the server with Control-C')
tornado.ioloop.IOLoop.instance().start()
http_server.start(0)
if __name__=="__main__":
main()
Loading...
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化