📜  python 发送短信 - Python 代码示例

📅  最后修改于: 2022-03-11 14:46:34.054000             🧑  作者: Mango

代码示例1
import requests
resp = requests.post('https://textbelt.com/text', {
  'phone': '5555555555',
  'message': 'Hello world',
  'key': 'textbelt',
})
print(resp.json())