/R
Size: a a a
/R
/R
AD
ЕЛ
IG
ЕЛ
AD
ЕЛ
/R
ЕЛ
AD
ЕЛ
SP
AD
SP
IG
VK
О
SP
import os
from twilio.rest import Client
# Your Account Sid and Auth Token from twilio.com/console
# and set the environment variables. See http://twil.io/secure
account_sid = os.environ['TWILIO_ACCOUNT_SID']
auth_token = os.environ['TWILIO_AUTH_TOKEN']
client = Client(account_sid, auth_token)
message = client.messages.create(
body='Hi there!',
from_='+15017122661',
to='+15558675310'
)
print(message.sid)