Essentially I'm trying to create a very simple script that will send predesignated messages when a defined message is received. I'm new to Python.
What I have is basically this:
from skpy import Skype
sk = Skype("myskypeID", "pwd") # connect to Skype
content="the message i wanna send"
ch = sk.contacts["SkypeID_in_contacts"].chat
ch.sendMsg(content)
This will send a single message once to a designated account. How would I go about making it so that I can send specific messages to said account based on what messages I get from it?