Skip to content

Instantly share code, notes, and snippets.

@kisamasaki
Created September 4, 2017 12:48
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save kisamasaki/9c36d1507e2b44af89e0cad1d77eac32 to your computer and use it in GitHub Desktop.
Save kisamasaki/9c36d1507e2b44af89e0cad1d77eac32 to your computer and use it in GitHub Desktop.
from twilio.rest import Client
account_sid = "##############################"
auth_token = "##############################"
client = Client(account_sid, auth_token)
client.messages.create(
to="+12345678901",
from_="+819012345678",
body="退屈な作業が終わったよ")
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment