Sms with Twilio api

from twilio.rest import Client 

# Your Account Sid and Auth Token from twilio.com / console 
account_sid = '' #Obtained after registering in twilio
auth_token = '' #Obtained after registering in twilio

client = Client(account_sid, auth_token) 

''' Change the value of 'from' with the number  
received from Twilio and the value of 'to' 
with the number in which you want to send message.'''
message = client.messages.create( 
                              from_='',#Tested with personal number 
                              body ='MLH is thop', 
                              to =''#Tested with personal number 
                          ) 

Built With

Share this project:

Updates