我开始学习这个asyncore.dispatcher模块,当我运行第一个示例程序时,它会给出如下错误:
Python 2.6版
已安装asyncore模块,其中还包含dispatcher类。有什么问题!
错误:
AttributeError: 'module' object has no attribute 'dispatcher'
示例代码:
import asyncore, socket
class HTTPClient(asyncore.dispatcher):
def __init__(self, host, path):
asyncore.dispatcher.__init__(self)
self.create_socket(socket.AF_INET, socket.SOCK_STREAM)
self.connect( (host, 80) )
self.buffer = 'GET %s HTTP/1.0\r\n\r\n' % path
def handle_connect(self):
pass
def handle_close(self):
self.close()
def handle_read(self):
print self.recv(8192)
def writable(self):
return (len(self.buffer) > 0)
def handle_write(self):
sent = self.send(self.buffer)
self.buffer = self.buffer[sent:]
client = HTTPClient('www.python.org', '/')
asyncore.loop()
最佳答案
你的问题是你命名了你的文件asyncore.py
。它隐藏了python标准库中的asyncore.py
,因此文件是自己导入的,而不是真正的文件。如果存在的话,您想在同一目录中重命名文件的副本并删除asyncore.pyc
。然后在运行文件时,将从标准库导入asyncore.py
。
当Python运行import asyncore
行时,Python会在sys.path
中的目录中查找名为asyncore.py
的文件。正在执行的主文件的目录始终是其中的第一个条目。所以Python会找到您的文件并尝试导入它。一般来说,如果要使用标准库中的模块,则不应将文件命名为与该模块相同的名称。