Python: tornado + wsgi asynchronous request processing

Source: Internet
Author: User
Tornado, wsgi, python, asynchronous processing python: tornado + wsgi asynchronous processing request tornado version:
Start_app.py

Java code

# coding:gbk    import tornado.web  import tornado.wsgi  import wsgiref.simple_server    import sys  import for_rmzx    reload(sys)  sys.setdefaultencoding('gbk')    class MainHandler_gjj(tornado.web.RequestHandler):        def initialize(self,param):          self.param = param        def get(self):          # name = self.get_argument("name")          self.write("Hello, gjj:" + self.param)    class MainHandler_sb(tornado.web.RequestHandler):      def get(self):          self.write("Hello, sb")    class StoryHandler(tornado.web.RequestHandler):      def get(self, param1,param2,parma3):          self.write("for test ref params " + param1 + "----------" + param2 + "----------" + parma3)    if __name__ == "__main__":      application_bjgjj = tornado.web.Application([          (r"/gjj", MainHandler_gjj, dict(param="andy")),          (r"/sb", MainHandler_sb),          (r"/rmzx", for_rmzx.MainHandler_rmzx),          (r"/api/param/([a-z]+)/([0-9]+)/([a-zA-Z0-9\u4e00-\u9fa5]+)", StoryHandler),      ])      wsgi_app = tornado.wsgi.WSGIAdapter(application_bjgjj)      server = wsgiref.simple_server.make_server('', 5555, wsgi_app)      server.serve_forever()

For_rmzx.py

Java code

__author__ = 'sks'    import tornado.web  import tornado.wsgi  import wsgiref.simple_server    class MainHandler_rmzx(tornado.web.RequestHandler):      def get(self):          self.write("Hello, rmzx")

Contact Us

The content source of this page is from Internet, which doesn't represent Alibaba Cloud's opinion; products and services mentioned on that page don't have any relationship with Alibaba Cloud. If the content of the page makes you feel confusing, please write us an email, we will handle the problem within 5 days after receiving your email.

If you find any instances of plagiarism from the community, please send an email to: info-contact@alibabacloud.com and provide relevant evidence. A staff member will contact you within 5 working days.

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.