共计 803 个字符,预计需要花费 3 分钟才能阅读完成。
要使用 Python 实现自动发送短信,你可以使用第三方的短信服务提供商的 API。其中,Twilio 是一个常用的短信服务提供商。以下是一个使用 Twilio API 发送短信的示例代码:
-
首先,在 Twilio 官网注册账号,并创建一个项目,获取账号 SID 和认证令牌。
-
安装 Twilio 库:
pip install twilio
- 编写 Python 代码:
from twilio.rest import Client
# Your Twilio account SID and auth token
account_sid = 'YOUR_ACCOUNT_SID'
auth_token = 'YOUR_AUTH_TOKEN'
# Your Twilio phone number
from_number = 'YOUR_TWILIO_PHONE_NUMBER'
# Recipient's phone number
to_number = '+1234567890'
# Message to be sent
message = 'Hello, this is a test message from Twilio!'
# Create Twilio client
client = Client(account_sid, auth_token)
# Send message
message = client.messages.create(
body=message,
from_=from_number,
to=to_number
)
print('Message sent successfully!')
将上述代码中的 YOUR_ACCOUNT_SID
、YOUR_AUTH_TOKEN
和YOUR_TWILIO_PHONE_NUMBER
替换为你在 Twilio 官网获取的信息。然后运行代码,即可发送短信。
丸趣 TV 网 – 提供最优质的资源集合!
正文完