Metadata-Version: 2.1
Name: snl
Version: 1.1
Summary: a SIP library
Home-page: https://github.com/edhinard/SIPandLove
License: UNKNOWN
Keywords: SIP development
Platform: posix
Classifier: Development Status :: 5 - Production/Stable
Classifier: Environment :: Console
Classifier: Intended Audience :: Developers
Classifier: Intended Audience :: Developers
Classifier: License :: OSI Approved :: MIT License
Classifier: Operating System :: POSIX :: Linux
Classifier: Programming Language :: Python :: 3.5
Classifier: Programming Language :: Python :: 3.6
Classifier: Programming Language :: Python :: 3.7
Requires-Python: >=3.5
Requires-Dist: pyparsing

SIP and Love
============

A SIP library


Installing
----------

Install and update using pip:

.. code-block:: text

    pip install -U snl


A Simple Example
----------------

.. code-block:: python

    import snl

    phoneA = snl.SIPPhoneClass()(
      ua=dict(proxy='1.2.3.4', aor='sip:+33123456789@sip.example.com')
    )
    phoneB = snl.SIPPhoneClass()(
      ua=dict(proxy='1.2.3.4', aor='sip:+33987654321@sip.example.com')
    )
    dialog = phoneA.invite(phoneB)
    if dialog:
      phoneB.bye(dialog)


