I\'m looking for the equivalent of in Google App Engine and Python.
Thanks!
Try with:
os.environ["REMOTE_ADDR"]
or with the Request Class variable:
class MyRequestHandler(webapp.RequestHandler): def get(self): ip = self.request.remote_addr