예제 #1
0
파일: __init__.py 프로젝트: raji91/OE7
def send(mobile, password, to, message):
    with Fetion(mobile, password) as x:
        x.send(to, message)
예제 #2
0
파일: __init__.py 프로젝트: jackey/PFetion
def send(mobile, password, to, message):
    x = Fetion(mobile, password)
    x.send(to, message)
예제 #3
0
파일: __init__.py 프로젝트: raji91/OE7
def send2self(mobile, password, message):
    with Fetion(mobile, password) as x:
        x.send2self(message)
예제 #4
0
파일: __init__.py 프로젝트: jackey/PFetion
def send2self(mobile, password, message):
    x = Fetion(mobile, password)
    x.send2self(message)