zenware

pygooglevoice_sendsms

Feb 18th, 2012
293
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Python 0.22 KB | None | 0 0
  1. from googlevoice import Voice
  2. from googlevoice.util import input
  3.  
  4. voice = Voice()
  5. voice.login()
  6.  
  7. phoneNumber = input('Number to send message to: ')
  8. text = input('Message text: ')
  9.  
  10. voice.send_sms(phoneNumber, text)
Add Comment
Please, Sign In to add comment