Skip to content

Instantly share code, notes, and snippets.

View cheeplusplus's full-sized avatar
🐆

Jess cheeplusplus

🐆
View GitHub Profile
@cheeplusplus
cheeplusplus / sendsms.py
Created July 13, 2011 21:20
Send an SMS on the commandline using pygooglevoice
import sys;
from googlevoice import Voice
voice = Voice()
voice.login()
phoneNumber = sys.argv[0]
if (phoneNumber == ""):
print("You must specify a number and a message.")
sys.exit(-1)