Created
April 6, 2015 04:17
-
-
Save jengel3/a038e3d00253092e4570 to your computer and use it in GitHub Desktop.
Revisions
-
Jake created this gist
Apr 6, 2015 .There are no files selected for viewing
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters. Learn more about bidirectional Unicode charactersOriginal file line number Diff line number Diff line change @@ -0,0 +1,13 @@ def addContacts(): import Skype4Py skype = Skype4Py.Skype() skype.Attach() client = Skype4Py.client.Client(skype) for chat in skype.Chats: if len(chat.Members) > 50: print chat.Name for user in chat.Members: user.SetBuddyStatusPendingAuthorization("Add me? (from group chat)") addContacts()