python

1
pip3 install twilio

https://www.twilio.com/

1
2
3
4
5
6
7
8
9
from twilio.rest import Client


def (message):
account = "ACXXXXXXXXXXXXX"
token = "XXXXXXXXXXXXXXXXX"
client = Client(account, token)
message = client.messages.create(
to="+86XXXXXXXX", from_="+XXXXXXXXX", body=message)