将gethostbyaddr与app引擎配合使用

时间:2011-04-03 00:52:17

标签: python google-app-engine

我正在尝试在Google App Engine中使用gethostbyaddr - Python。

我有

import socket

然后

class BeatMail(webapp.RequestHandler):

    def get(self):
        refer = self.request.remote_addr
        referName = socket.gethostbyaddr(refer)
        self.response.out.write(referName)

但是我在socket.gethostbyaddr(参考)行上得到了错误。谢谢!

2 个答案:

答案 0 :(得分:2)

AppEngine API中禁用了

socket。请参阅runtime docs

答案 1 :(得分:0)

不幸的是,

gethostbyaddr尚未得到支持,还有一个未公开的功能请求here