使用python将短信更新发送到手机

在本教程中,我们将学习如何发送短信Python的。我们将使用Twilio发送短信。

首先,转到Twilio并创建一个帐户。您将获得免费的试用帐户。并完成设置。

我们必须安装一个名为twilio的模块才能与Twilio客户端一起使用。使用以下命令进行安装。

pip install twilio

现在,转到有关如何使用Twilio客户端发送SMS的Twilio文档。或按照步骤发送SMS。

  • twilio.rest导入twilio客户端

  • 从您的Twilio帐户获取并存储account_sidauth_token

  • 通过传递account_sidauth_token来创建Client的实例。

  • 现在,得到了您的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

结论

如果您对本教程有任何疑问,请在评论部分中提及。