Last active 1440820678

List active chats with their IDs. Used with https://gist.github.com/blha303/9913570

Revision 166e157eaf6c52d9c0d16062b1a7af9203601f7e

skype_list_rooms.py Raw
1import Skype4Py
2skype = Skype4Py.Skype(Transport='x11')
3print "\n\n".join(["%s: %s" % (a.Name, ", ".join([b.Handle for b in a.Members])) for a in skype.Chats])
4