Posts

Showing posts with the label Python

Send SMS Using Twilio API

from twilio.rest import Client  account_sid = 'ACe482e1e1690ccd421135c484936682ba'  auth_token = '4d27d3d7aabbe9a4ad34f303217152c6'  client = Client(account_sid, auth_token)  message = client.messages.create(                                from_='+14156884133',                                 body='Hiii I am Manoj Click Here bit.ly/update',                                     to='+917976960544'                            )  print(message.sid)