Metadata-Version: 2.1
Name: Katari
Version: 0.0.1
Summary: A SIP(Session Initiation Protocol) Application Framework
Home-page: http://packages.python.org/Katari
Author: Aaron Parfitt
Author-email: aaronparfitt123@gmail.com
License: BSD
Keywords: voip
Platform: UNKNOWN
Classifier: Development Status :: 2 - Pre-Alpha
Classifier: Programming Language :: Python :: 2.7

# PySIP - Python SIP (Session Initiated Protocol) Application Framework

[![PyPI pyversions](https://img.shields.io/pypi/status/PySIPFramework.svg)](https://pypi.org/project/PySIPFramework/)
[![PyPI version shields.io](https://img.shields.io/pypi/v/PySIPFramework.svg)](https://pypi.python.org/pypi/PySIPFramework/)
[![PyPI license](https://img.shields.io/pypi/l/PySIPFramework.svg)](https://pypi.python.org/pypi/PySIPFramework/)


## installing

```

pip install PySIPFramework 

```

## An Example

```python

from PySIPFramework import SipApplication

app = SipApplication()

app.run()

```


