Wenn ich versuche,Ist Skype4Py am Leben?
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
ich sehe nur ein "!".
So:
skype.Attach()
nicht funktionieren.
Diese ganze thematische wirklich zermürbend ... Vielen Dank Microsoft
Welche Skype-Version verwenden Sie unter Win?Unter Linux funktioniert es wie erwartet – hannsworst