Skip to content

Instantly share code, notes, and snippets.

@RobSpectre
Created August 18, 2012 15:55
Show Gist options
  • Select an option

  • Save RobSpectre/3387915 to your computer and use it in GitHub Desktop.

Select an option

Save RobSpectre/3387915 to your computer and use it in GitHub Desktop.
Example of a Twilio Proactive Notification in Python
from twilio.rest import TwilioRestClient
ACCOUNT_SID = "ACxxxxx"
AUTH_TOKEN = "yyyyyyyy"
client = TwilioRestClient(ACCOUNT_SID, AUTH_TOKEN)
client.sms.messages.create(from_="+15556667777", to="+15558675309", body="Reminder: Harley Manning will be signing copies of his new book at the Commonwealth Club Thursday at 6 p.m.")
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment