Created
September 5, 2015 23:05
-
-
Save ejcer/10b1e5436d4889aa3e3d to your computer and use it in GitHub Desktop.
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
__author__ = 'emcenrue' | |
# Download the Python helper library from twilio.com/docs/python/install | |
from twilio.rest import TwilioRestClient | |
# Your Account Sid and Auth Token from twilio.com/user/account | |
account_sid = "594e70312e0a1bfcfb63073e64c517bd" | |
auth_token = "{{ 594e70312e0a1bfcfb63073e64c517bd }}" | |
client = TwilioRestClient(account_sid, auth_token) | |
message = client.messages.create(body="Jenny please?! I love you <3", | |
to="+15714880711", | |
from_="+15714880711") |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment