使用Python发送短信更新到手机


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

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

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

pip install twilio

现在,访问Twilio文档,了解如何使用Twilio客户端发送短信。或者按照步骤发送短信。

  • twilio.rest导入twilio Client
  • 从您的Twilio帐户获取并存储account_sidauth_token
  • 通过传递account_sidauth_token来创建Client的实例。
  • 现在,从您的Twilio帐户获取from号码。
  • 现在,使用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

结论

如果您对本教程有任何疑问,请在评论区提出。

更新于:2020年7月11日

2K+ 次浏览

启动您的职业生涯

完成课程获得认证

开始
广告