views:

190

answers:

4

Hello everyone,

I'm writting a small python script notify me when certain condition met. I used smtplib which does the emailing for me, but I also want the script to call my cell phone as well.

I can't find a free library for phone callings. Does anyone know any?

Thanks a lot.

-J

+5  A: 

Make the calls using Skype, and use the Skype4Py API.

If you want other suggestions, please specify how you want to make the call (modem? Some software bridge? What?).

Also, might I suggest that you send an SMS instead of placing a call? You can do that via Skype too, btw.

gnud
Python is the best evar! It has libraries to hand phone calling! Amazing! :D
George
+2  A: 

Twilio can make calls through their API. Pay as you go. Worked well for wakeup calls for me.

Tom
A: 

I've used Skype4Py very successfully. Keep in mind though it does require Skype to be installed and costs the standard rate for SkypeOut.

joemoe
A: 

thanks all. i'll give it a try

jay
edit your question and add the thanks :)
Casey