如何在谷歌应用引擎中使用whois
I know there is pywhois but it can't used in gae, see this question. But i really need this function to verify whether a domain is registered, is there other way to implement whois by pure python? Thanks.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
您需要找到一个 HTTP Api 来获取 whois,例如 http://www.whoisxmlapi.com/ 并使用 < a href="http://code.google.com/appengine/docs/python/urlfetch/" rel="nofollow">urlfetch 您可以获取信息。
另一种解决方案是使用 AWS 的微实例创建此 Web 服务并安装模块 pywhois,您需要只在 HTTP 中创建接口。
You need to find a HTTP Api to get whois like http://www.whoisxmlapi.com/ and with urlfetch you can fetch informations.
An another solution is to create this webservice with a micro instance from AWS and install the module pywhois, you need to just create the interface in HTTP.