Computer >> 컴퓨터 >  >> 프로그램 작성 >> Python

Python을 사용하여 휴대폰으로 SMS 업데이트 보내기

<시간/>

이 튜토리얼에서는 SMS를 보내는 방법을 배울 것입니다. 파이썬에서 . Twilio를 사용할 것입니다. SMS를 보내기 위해.

먼저 Twilio로 이동하여 계정을 만듭니다. 무료 평가판 계정을 받게 됩니다. 그리고 설정을 마칩니다.

twilio라는 모듈을 설치해야 합니다. Twilio 클라이언트와 함께 작동합니다. 다음 명령어로 설치하세요.

pip install twilio

이제 Twilio 클라이언트를 사용하여 SMS를 보내는 방법에 대한 Twilio 설명서로 이동합니다. 또는 SMS를 보내는 단계를 따르십시오.

  • twilio 클라이언트 가져오기 twilio.rest에서 .
  • account_sid 가져오기 및 저장 및 auth_token Twilio 계정에서.
  • 클라이언트의 인스턴스 만들기 account_sid 전달 및 auth_token .
  • 이제 에서 Twilio 계정의 번호입니다.
  • 이제 client.messages.create(body=message,from_=from_number, to=verified_number)를 사용하여 메시지를 보냅니다.
  • 메시지를 받게 됩니다.

예시

# importing the client from the twilio
from twilio.rest import Client
# Your Account Sid and Auth Token from twilio account
account_sid = [ACCOUNT_SID]
auth_token = [AUTH_TOKEN]
# instantiating the Client
client = Client(account_sid, auth_token)
# sending message
message = client.messages.create(body='Hi there! How are you?', from_=[FROM_NUM
, to=[VERIFIED_NUMBER])
# printing the sid after success
print(message.sid)

메시지가 성공적으로 전송되면 다음과 같이 해시 코드가 표시되지 않습니다.

SMd954e170ca2545248075c3bc2623aabd

결론

튜토리얼에 의문점이 있으면 댓글 섹션에 언급하세요.