如何在gae中使用pywhois模块

时间:2011-08-31 08:44:01

标签: python google-app-engine pywhois

我在尝试导入pywhois module时遇到问题,我可以导入我自己的模块但导入pywhois时仍有问题。我在项目文件夹中移动了pywhois文件夹,screentshot如下: enter image description here

这是下面的导入和通话语句: 导入部分:

from pywhois import *

致电部分:

 w = whois('hackbo.com')
 self.response.out.write(w)

问题是它总会抛出一个http 500错误,错误文本如下:

Traceback (most recent call last):
  File "/home/li/Desktop/google_appengine/google/appengine/ext/webapp/__init__.py", line 700, in __call__
    handler.get(*groups)
  File "/home/li/Desktop/google_appengine/domain/main.py", line 43, in get
    w = whois('hackbo.com')
  File "pywhois/__init__.py", line 12, in whois
    text = nic_client.whois_lookup(None, domain, 0)
  File "pywhois/whois.py", line 157, in whois_lookup
    result = self.whois(query_arg, nichost, flags)
  File "pywhois/whois.py", line 100, in whois
    s = socket.socket(socket.AF_INET, socket.SOCK_STREAM)
AttributeError: 'module' object has no attribute 'socket'

这个错误是什么意思?为什么我可以导入我自己的模块但不能导入pywhois?

2 个答案:

答案 0 :(得分:6)

Google App Engine不支持socket使用的pywhois模块。它允许您import socket,但it's an empty module

答案 1 :(得分:-1)

import whois
site = input ("Enter Site : ")
n = whois.whois (site)
print (n)

这是最好的Whois
轻松享受。