skype4py P2P chat is not getting delivered

80 Views Asked by At

I'm using Python script & skype4py to send the chat message but its not getting delivered.

Below is my script.

import Skype4Py
import sys

skype = Skype4Py.Skype()
skype.Attach()
user = 'user1'
message = 'Build is successful.'
skype.SendMessage(user, message)

You can see the message is not getting delivered, its just showing circle. message loading image

0

There are 0 best solutions below