I have a RequestHandler object for incoming post()s. How can I find the IP of the client making the request? I've browsed most of RequestHandler's methods and properties and seem to have missed something.
RequestHandler
post()
RequestHandler.request.remote_ip (from RequestHandler's instance)
RequestHandler.request.remote_ip
you can inspect the response like:
... class MainHandler(tornado.web.RequestHandler): def get(self): self.write(repr(self.request)) ...
1.4m articles
1.4m replys
5 comments
57.0k users