# 라이브러리 : 다른 개발자가 공개한 패키지
# API : Application Progaramming Interface.
# Download the helper library from https://www.twilio.com/docs/python/install
from twilio.rest import Client
# Your Account Sid and Auth Token from twilio.com/console
# DANGER! This is insecure. See http://twil.io/secure
account_sid = '직접입력'
auth_token = '직접입력'
client = Client(account_sid, auth_token)
message = client.messages \
.create(
body="자니?",
from_='보내는번호 직접입력',
to='받는번호 직접입력'
)
print(message.sid)
728x90
댓글