As the title suggests, I cannot seem to find some chats when using Skype4Py.
I've run this code:
def get_bookmarked_chats():
for b in skype.BookmarkedChats:
print b.Topic
which should loop through all my bookmarked/favorite chats and print the topic. However, I have about 8 bookmarked chats, and this prints 9, only 5 of which are currently bookmarked, and ignores the other 3, and prints 4 chats that are no longer bookmarked. I have rerun
skype = Skype4Py.Skype()
skype.FriendlyName = 'Extract_chat_history'
skype.Attach()
print("Successfully connected to Skype account '" + Skype4Py.Skype.User(skype).Handle + "'.")
with no issues, and other code to retrieve new messages for the chats (that are recognized) seems to work perfectly fine. I have the newest skype installed (Version 7.0.59.102 according to Help -> About Skype), and I have clicked the star to bookmark/unbookmark chats. I have also tried looping through skype.Chats
to try and find the chat I want to add bookmark with Skype4Py, but am unable to find the chat there either to do so.
If anyone knows how to solve this, please let me know! Thanks