我在Skype4Py連接到Skype客戶端時遇到問題。我下載了easy install,並用它來安裝Skype4Py。我有64位Python和Windows 7.當我使用IDLE逐行嘗試示例腳本(見下文)時,我無法通過skype.attach()
,似乎沒有任何事情發生。我最終不得不關閉IDLE並殺死應用程序。如果您有任何想法,請讓我知道。我提前道歉。只是搞清楚如何下載Skype4Py對我來說很具挑戰性。 Skype正在運行並且我已登錄。Skype4py attach不起作用
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
Skype正在運行? – bernie 2013-02-08 17:53:00