首页 > 编程语言 > 详细

python免费发送短信

时间:2019-01-04 16:53:19      阅读:240      评论:0      收藏:0      [点我收藏+]
pip install twilio
from twilio.rest import Client

# Your Account SID from twilio.com/console
account_sid = "AC3xxxxxxxxxxxxxxxxxxxxxxxxxxxxx"
# Your Auth Token from twilio.com/console
auth_token  = "xxxxxxxxxxxxxxxxxxxxxxxxxx"


def send():
    client = Client(account_sid, auth_token)
    # Your new Phone Number is +16184000273
    message = client.messages.create(
        to="+8615112341234",
        from_="+16184000273",
        body="这是一条测试短信!")

    print(message.sid)

if __name__ == __main__:
    send()

 

python免费发送短信

原文:https://www.cnblogs.com/blog-rui/p/10220607.html

(0)
(0)
   
举报
评论 一句话评论(0
关于我们 - 联系我们 - 留言反馈 - 联系我们:wmxa8@hotmail.com
© 2014 bubuko.com 版权所有
打开技术之扣,分享程序人生!