Skype4py附加不起作用

时间:2013-02-08 17:47:06

标签: python windows-7 skype4py

我无法将Skype4Py连接到我的Skype客户端。我下载了easy _install并用它来安装Skype4Py。我有64位Python和Windows 7.当我使用IDLE逐行尝试示例脚本(见下文)时,我无法通过skype.attach(),似乎没有任何事情发生。我最终不得不关闭IDLE并杀死应用程序。如果您有任何想法,请告诉我。我提前道歉。只是搞清楚如何下载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

1 个答案:

答案 0 :(得分:4)

目前看起来不支持64位Python,因为Skype客户端应用程序是32位。

https://github.com/awahlig/skype4py/issues/6

使用32位Python。