Last active 1440820678

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

Steven Smith revised this gist 1396357966. Go to revision

1 file changed, 1 insertion, 1 deletion

gistfile1.txt renamed to skype_list_rooms.py

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

Steven Smith revised this gist 1396357891. Go to revision

1 file changed, 3 insertions

gistfile1.txt(file created)

@@ -0,0 +1,3 @@
1 + import Skype4Py
2 + skype = Skype4Py.Skype(Transport='x11')
3 + print "\n\n".join(["%s: %s" % (a.Name, ", ".join([b.Handle for b in a.Members])) for a in skype.Chats])
Newer Older