twilioapi.py 314 B

123456789101112
  1. import twilio
  2. from twilio.rest import TwilioRestClient
  3. account_sid = "AC7889a1889c1833bd7181e45e60372776"
  4. auth_token = "1ad0315f3cc7a154aaaef048f1304f71"
  5. client = TwilioRestClient(account_sid, auth_token)
  6. message = client.messages.create(body="Hi DrkSephy",
  7. to="+13473282978",
  8. from_="+13473781813")