0 purchases
snl 1.1
A SIP library
Installing
Install and update using pip:
pip install -U snl
A Simple Example
import snl
phoneA = snl.SIPPhoneClass()(
ua=dict(proxy='1.2.3.4', aor='sip:[email protected]')
)
phoneB = snl.SIPPhoneClass()(
ua=dict(proxy='1.2.3.4', aor='sip:[email protected]')
)
dialog = phoneA.invite(phoneB)
if dialog:
phoneB.bye(dialog)
For personal and professional use. You cannot resell or redistribute these repositories in their original state.
There are no reviews.