wearetherock
wearetherock

Reputation: 3781

Python SIP library

I need to write python application connect to trixbox that run as SIP server. But I not found any library that implement in python. I found SIP SKD at http://www.vaxvoip.com/ but it not support python. Can anyone suggest me an alternative to VaxVoip? Thank you.

Upvotes: 26

Views: 53194

Answers (3)

paprika
paprika

Reputation: 2484

You might want to have a look at Sippy. It's a B2BUA with a complete SIP stack implementation underneath (you could use just that). It's written entirely in Python, so it's pretty hackable. Sippy is implemented with Twisted but uses none of its SIP functionality.

Upvotes: 11

Jermiajab
Jermiajab

Reputation: 316

There are Python bindings for the PJSUA API.

Upvotes: 20

LB40
LB40

Reputation: 12331

Twisted supports SIP. That's really cool

Upvotes: 15

Related Questions