I’m writting a script to get the conversation data using Skpy, however i can’t get pass the Authentication process
from skpy import Skype
from skpy import SkypeChat
sk = Skype(mail,password)
conn = sk.conn
contacts = sk.contacts
chats = sk.chats.recent()
print(chats)
Here is the code so far using my email and password.