Last active
January 6, 2017 23:21
-
-
Save eob/7531253eee8507742bef8a13324c3be7 to your computer and use it in GitHub Desktop.
Extra code to send an SMS via Dash
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 | |
client = TwilioRestClient("ACCOUNT SID", "AUTH TOKEN") | |
message = client.messages.create(body="Everest wants a joke!", to="DADS PHONE", from_="TWILIO NUMBER") |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment