Created
August 7, 2012 21:59
-
-
Save RobSpectre/3289752 to your computer and use it in GitHub Desktop.
Karaoke Lyrics
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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