母亲节祝福python代码
时间: 2024-05-20 19:08:37 浏览: 200
当然可以!以下是一段简单的 Python 代码,用于发送母亲节祝福短信:
```python
# 导入所需的模块
import requests
# 接收祝福语和手机号码
message = input("请输入您想说的祝福语:")
phone_number = input("请输入手机号码:")
# 发送请求
url = "https://sms-api.upyun.com/api/messages"
headers = {
"Authorization": "Basic your_auth_info_here",
"Content-Type": "application/json"
}
data = {
"template_id": "your_template_id_here",
"mobiles": [phone_number],
"vars": {
"message": message
}
}
response = requests.post(url, headers=headers, json=data)
# 输出结果
if response.status_code == 200:
print("短信发送成功!")
else:
print("短信发送失败!")
```
请注意,这段代码需要使用第三方短信服务提供商的 API。你需要替换掉 `your_auth_info_here` 和 `your_template_id_here` 为你自己的认证信息和模板 ID。另外,该代码仅供学习参考,不要用于非法用途。
阅读全文