Skip to content

Instantly share code, notes, and snippets.

@mmisono
Created September 4, 2011 04:20
Show Gist options
  • Save mmisono/1192250 to your computer and use it in GitHub Desktop.
Save mmisono/1192250 to your computer and use it in GitHub Desktop.
#!/usr/bin/python
import Skype4Py
skype = Skype4Py.Skype()
skype.Attach()
for i in xrange(skype.RecentChats.Count):
print "%-40s\t\t%s" % (skype.RecentChats[i].Name,
skype.RecentChats[i].FriendlyName)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment