我无法将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
答案 0 :(得分:4)