Skip to content

Instantly share code, notes, and snippets.

@RobSpectre
Created August 7, 2012 21:59
Show Gist options
  • Save RobSpectre/3289752 to your computer and use it in GitHub Desktop.
Save RobSpectre/3289752 to your computer and use it in GitHub Desktop.
Karaoke Lyrics
from twilio.rest import TwilioRestClient
ACCOUNT_SID = "ACxxxxxxxxxxxx"
AUTH_TOKEN = "yyyyyyyyyyyyyyy"
APP_SID = "APzzzzzzzzzzzzzzzz"
CALLER_ID = "+15556667777"
KARAOKE_NUMBER = "+15558675309"
client = TwilioRestClient(ACCOUNT_SID, AUTH_TOKEN)
lyrics = file('./lyrics.txt')
for line in lyrics:
client.sms.messages.create(from_=CALLER_ID, to=KARAOKE_NUMBER, body=line)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment