Last active
July 14, 2016 21:01
-
-
Save ironprice91/8eef9d4666bc9ea2d737bf7712904dae 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
| from twilio import rest | |
| account_sid = "INSERT_HERE" | |
| auth_token = "INSERT_HERE" | |
| client = rest.TwilioRestClient(account_sid, auth_token) | |
| message = client.sms.messages.create( | |
| body="Whaatt up", | |
| to="+1303", | |
| from_="+1720" | |
| ) | |
| print message.sid |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment