Skip to content

Instantly share code, notes, and snippets.

@blha303
Last active August 29, 2015 13:57
Show Gist options
  • Save blha303/9913693 to your computer and use it in GitHub Desktop.
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
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