我在将Skype4Py连接到我的Skype客户端时遇到了问题。我下载了easy _install并用它安装了Skype4Py。我使用的是64位的Python和windows7。当我使用IDLE逐行尝试示例脚本(见下文)时,我无法通过skype.attach(),似乎什么都没有发生。我最终不得不关闭空闲空间并终止应用程序。如果你有任何想法,请让我知道。我提前道歉。仅仅是弄清楚如何下载Skype4Py对我来说就是一个挑战。Skype正在运行,我已登录。
import Skype4Py
# Create an instance of the Skype class.
skype = Skype4Py.Skype()
# Connect the Skype object to the Skype client.
skype.Attach()
# Obtain some information from the client and print it out.
print 'Your full name:', skype.CurrentUser.FullName
print 'Your contacts:'
for user in skype.Friends:
print ' ', user.FullName发布于 2013-02-09 22:39:01
https://stackoverflow.com/questions/14778361
复制相似问题