Last active 1440820678

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

Revision a80bfed9c89ad70a3c7832d5aa9577b2ab9d23b5

gistfile1.txt 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])