Maison  >  Article  >  développement back-end  >  python使用PyFetion来发送短信的例子

python使用PyFetion来发送短信的例子

WBOY
WBOYoriginal
2016-06-16 08:44:291289parcourir

通过PyFetion可以很方便的使用python来用飞信发送短信,下面贴出代码:

复制代码 代码如下:

from fetion import *

import os

def SendSMS(sms):
    myphone = 'xxxxxx'
    mypwd = 'oooooooooo'
    tophone = 'oxoxoxoxoxox'

    fetion = PyFetion(myphone,mypwd,'TCP')
    fetion.login(FetionHidden)
    print 'send to '+tophone
    fetion.send_sms(sms,tophone,True)
    print 'OK'

    fetion.logout()
    return True

msg = "hello world"
SendSMS(msg)
print 'OK!!!'


有时会提醒你输入验证码,验证码就在PyFetion生成的一个图片中,查看图片然后输入验证码就ok了.

PyFetion项目主页:https://code.google.com/p/pytool/

Déclaration:
Le contenu de cet article est volontairement contribué par les internautes et les droits d'auteur appartiennent à l'auteur original. Ce site n'assume aucune responsabilité légale correspondante. Si vous trouvez un contenu suspecté de plagiat ou de contrefaçon, veuillez contacter admin@php.cn