Skip to content

Instantly share code, notes, and snippets.

from twilio.rest import Client
import threading
from time import sleep
# Your Account Sid and Auth Token from twilio.com/console
account_sid = 'YOUR_ACCOUNT_SID'
auth_token = 'YOUR_AUTH_TOKEN'
YOUR_TWILIO_PHONE_NUMBER = 'enter your twilio number here'
client = Client(account_sid, auth_token)