Twinkle sip client, ported to a python module.
Twinkle sip client, ported to a python module.
Hardware | Rpi zero W & Rp3 mob B |
Operating systems | Linux |
Python versions | Python 3.x |
Distros | Raspbian 10 & 11 |
Languages | English |
sudo apt-get install twinkle
sudo pip3 install pytwinkle
from pytwinkle import Twinkle
def callback(event, *args):
if event=="registration_succeeded":
uri, expires = args
print("registratiom succeeded, uri: %s, expires in %s seconds"%(uri, expires))
# The module keeps the session, you havent to register
mTP.message("name@domain", "Hello")
mTP.call("name@domain")
if event=="new_msg":
msg=args[0]
print("new_msg!: "+str(msg))
if event=="incoming_call":
call=args[0]
print("call: "+str(call))
if event=="cancelled_call":
line=args[0]
print("call cancelled, line: %s"%(line))
if event=="failed_call":
line=args[0]
print("failed_call, line: %s"%(line))
if event=="dtmf_received":
line=args[0]
key=args[0]
print("dtmf_received, line: %s, key: %s"%(key))
if event=="answered_call":
call=args[0]
print("answered: %s"%(str(call)))
if event=="ended_call":
line=args[0]
print("call ended, line: %s"%(line))
mTP = Twinkle(callback)
mTP.set_account("name","domain","password")
mTP.run()
Event | Description | Returns |
---|---|---|
“registration_succeeded” | When the registration suceed | Line number and seconds to expire (*) |
“new_msg” | New message receives | msg={‘from’:uri, ‘to’:uri ‘msg’:msg} |
“incoming_call” | Incoming call | call={‘from’:uri, ‘to’:uri} |
“cancelled_call” | Cancelled call | Line number |
“answered_call” | Answered call | call={‘msg’:msg, ‘code’:num, ‘to’:uri} |
“ended_call” | Ended call | Line number |
“failed_call” | Failed call | Line number |
“dtmf_received” | DMTF reveived | Line number and Key number |
(*) doesnt matter the seconds to expire, the program keep the session active
Functions
Not supported at the moment
@LubosD - https://github.com/LubosD/twinkle
Roberto Lama Rodríguez - roberlama@gmail.com