Skip to content

Instantly share code, notes, and snippets.

@arikfr
Created May 11, 2009 17:51
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save arikfr/110066 to your computer and use it in GitHub Desktop.
Save arikfr/110066 to your computer and use it in GitHub Desktop.
import Skype4Py
skype = Skype4Py.Skype()
skype.Attach()
number = '+972...'
sms = skype.CreateSms(Skype4Py.smsMessageTypeOutgoing, number)
sms.Body = 'Test SMS from Python!'
sms.Send()
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment