Metadata-Version: 1.2
Name: snl
Version: 1.0
Summary: a SIP library
Home-page: https://github.com/edhinard/SIPandLove
Author: UNKNOWN
Author-email: UNKNOWN
License: UNKNOWN
Description-Content-Type: UNKNOWN
Description: 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)
        
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
