This video show how to send SMS using Python
--------------------------------------------------------------------------------------------
https://www.twilio.com/
--------------------------------------------------------------------------------------------
code:--for twilio version 5.7
from twilio.rest import TwilioRestClient
account_sid = "write account_sid"
auth_token = "write auth_token"
client = TwilioRestClient(account_sid, auth_token)
message = client.messages.create(
body="message",
from_='write phone number give by twilio',
to='write client number'
)
print(message.sid)
---------------------------------------------------------------------------------------------
PyCharm Download Link 👇👇:
https://www.jetbrains.com/pycharm/
----------------------------------------------------------------------------------------------
Like, share, comment below
Don't forget to subscribe to our channel
This video is made for education purpose only
---------------------------------------------------------------------------------------------
#Python#Programming#Hackerscode#Coding#Pychram
Copyright Disclaimer:
Copyright Disclaimer under Section 107 of the copyright act 1976, allowance is made for fair use for purposes such as criticism, comment, news reporting, scholarship, and research. Fair use is a use permitted by copyright statute that might otherwise be infringing. Non-profit, educational or personal use tips the balance in favour of fair use.
---------------------------------------------------------------------------------------------