Last active
August 29, 2015 13:57
-
-
Save blha303/9913693 to your computer and use it in GitHub Desktop.
List active chats with their IDs. Used with https://gist.github.com/blha303/9913570
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
import Skype4Py | |
skype = Skype4Py.Skype(Transport='x11') | |
print "\n\n".join(["%s: %s" % (a.Name, ", ".join([b.Handle for b in a.Members])) for a in skype.Chats]) |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment