본문 바로가기
Language/Python

실습 : Twilio SMS Python

by devdevdev 2020. 10. 24.
# 라이브러리 : 다른 개발자가 공개한 패키지
# 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

'Language > Python' 카테고리의 다른 글

패키지와 모듈  (0) 2020.10.24
클래스와 오브젝트  (0) 2020.10.24
자료구조  (0) 2020.10.21

댓글