码迷,mamicode.com
首页 > 其他好文 > 详细

代码高亮调整试验

时间:2014-11-26 01:25:54      阅读:217      评论:0      收藏:0      [点我收藏+]

标签:style   http   io   ar   os   sp   on   div   art   

 

import tornado.httpserver
import tornado.ioloop
import tornado.web
import tornado.options
import os.path

from tornado.options import define, options
define("port", default=8888, help="run on the given port", type=int)


class MainHandler(tornado.web.RequestHandler):
    def get(self):
        self.write("your current ip is: "+self.request.remote_ip)


if __name__ == "__main__":
    application = tornado.web.Application([(r"/", MainHandler)], debug = True)
    http_server = tornado.httpserver.HTTPServer(application, xheaders=True)
    http_server.listen(options.port)
    tornado.ioloop.IOLoop.instance().start()

代码高亮调整试验

标签:style   http   io   ar   os   sp   on   div   art   

原文地址:http://www.cnblogs.com/DingCao/p/4122282.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!