Home  >  Article  >  Backend Development  >  python使用PyFetion来发送短信的例子

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

WBOY
WBOYOriginal
2016-06-16 08:44:291289browse

通过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/

Statement:
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn