如果我嘗試Skype4Py是否還活着?
import Skype4Py
# Create an instance of the Skype class.
skype = Skype4Py.Skype()
print "!"
# Connect the Skype object to the Skype client.
skype.Attach()
print "!"
# 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.Attach()
不起作用。
這整個專題真是折磨人......謝謝你微軟
哪在Win下使用Skype的版本?在Linux下它按預期工作 – hannsworst