项目作者: RoberWare

项目描述 :
Twinkle sip client, ported to a python module.
高级语言: Python
项目地址: git://github.com/RoberWare/pytwinkle.git
创建时间: 2020-07-09T15:47:51Z
项目社区:https://github.com/RoberWare/pytwinkle

开源协议:

下载



Github contributors

License: MIT

Description

Twinkle sip client, ported to a python module.

Tested environments

Hardware Rpi zero W & Rp3 mob B
Operating systems Linux
Python versions Python 3.x
Distros Raspbian 10 & 11
Languages English

Instalation

  1. sudo apt-get install twinkle
  2. sudo pip3 install pytwinkle

Example

  1. from pytwinkle import Twinkle
  2. def callback(event, *args):
  3. if event=="registration_succeeded":
  4. uri, expires = args
  5. print("registratiom succeeded, uri: %s, expires in %s seconds"%(uri, expires))
  6. # The module keeps the session, you havent to register
  7. mTP.message("name@domain", "Hello")
  8. mTP.call("name@domain")
  9. if event=="new_msg":
  10. msg=args[0]
  11. print("new_msg!: "+str(msg))
  12. if event=="incoming_call":
  13. call=args[0]
  14. print("call: "+str(call))
  15. if event=="cancelled_call":
  16. line=args[0]
  17. print("call cancelled, line: %s"%(line))
  18. if event=="failed_call":
  19. line=args[0]
  20. print("failed_call, line: %s"%(line))
  21. if event=="dtmf_received":
  22. line=args[0]
  23. key=args[0]
  24. print("dtmf_received, line: %s, key: %s"%(key))
  25. if event=="answered_call":
  26. call=args[0]
  27. print("answered: %s"%(str(call)))
  28. if event=="ended_call":
  29. line=args[0]
  30. print("call ended, line: %s"%(line))
  31. mTP = Twinkle(callback)
  32. mTP.set_account("name","domain","password")
  33. mTP.run()
  • Callbacks
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

    • call Call someone
    • answer Answer an incoming call
    • answerbye Answer an incoming call or end a call
    • reject Reject an incoming call
    • bye End a call
    • hold Put a call on-hold
    • retrieve Retrieve a held call
    • redial Repeat last call
    • register Register your phone at a registrar
    • deregister De-register your phone at a registrar
    • message Send an instant message
  • Not supported at the moment

    • redirect Redirect an incoming call
    • transfer Transfer a standing call
    • conference Join 2 calls in a 3-way conference
    • mute Mute a line
    • dtmf Send DTMF
    • fetch_reg Fetch registrations from registrar
    • options Get capabilities of another SIP endpoint
    • line Toggle between phone lines
    • dnd Do not disturb
    • auto_answer Auto answer
    • user Show users / set active user
    • presence Publish your presence state
    • quit Quit

Dependencies

  • System dependencies
    • python3
    • twinkle
  • Python dependencies
    • multiprocessing

Mentions

@LubosD - https://github.com/LubosD/twinkle

Developer

Roberto Lama Rodríguez - roberlama@gmail.com