Skip to content

Instantly share code, notes, and snippets.

@ironprice91
Last active July 14, 2016 21:01
Show Gist options
  • Select an option

  • Save ironprice91/8eef9d4666bc9ea2d737bf7712904dae to your computer and use it in GitHub Desktop.

Select an option

Save ironprice91/8eef9d4666bc9ea2d737bf7712904dae to your computer and use it in GitHub Desktop.
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