-2

私が試したら

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

"!" が 1 つだけ表示されます。

そう:

skype.Attach()

動作しない。

このテーマ全体は本当に大変です...マイクロソフトに感謝します

4

2 に答える 2