# Download the helper library from https://www.twilio.com/docs/python/install
import os
from twilio.rest import Client


# Find your Account SID and Auth Token at 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="Join Earth's mightiest heroes. Like Kevin Bacon.",
                     from_='+12542796380',
                     to='+821012341234'
                 )

print(message.sid)

https://www.youtube.com/watch?v=M6kQTpIqpLs 

https://www.twilio.com/docs/sms/quickstart/python

'Python > 코딩 1시간만에 배우기_파이썬' 카테고리의 다른 글

11. 패키지 & 모듈  (0) 2021.12.29
10. 상속  (0) 2021.12.29
9. 클래스  (0) 2021.12.29
8. 복습 - 과일 숫자 세는 프로그램 만들기  (0) 2021.12.29
5. 자료구조 - list(리스트)  (0) 2021.12.29

+ Recent posts