Metadata-Version: 2.1
Name: pyfb-kamailio
Version: 1.2.1
Summary: Kamailio package for django project, mainly used by PyFreeBilling project
Home-page: https://www.pyfreebilling.com
Author: Mathias WOLFF
Author-email: mathias@celea.org
License: MIT
Keywords: pyfb-kamailio
Platform: UNKNOWN
Classifier: Development Status :: 5 - Production/Stable
Classifier: Framework :: Django :: 2.1
Classifier: Intended Audience :: Developers
Classifier: License :: OSI Approved :: MIT License
Classifier: Natural Language :: English
Classifier: Programming Language :: Python :: 3.5
Classifier: Programming Language :: Python :: 3.6
Requires-Dist: Django (<3,>=2.2.9)
Requires-Dist: django-model-utils (>=2.0)
Requires-Dist: djangorestframework (>=3.7.7)
Requires-Dist: django-crispy-forms (>=1.7.0)

=============================
Pyfb-kamailio
=============================

.. image:: https://badge.fury.io/py/pyfb-kamailio.svg
    :target: https://badge.fury.io/py/pyfb-kamailio

.. image:: https://travis-ci.org/mwolff44/pyfb-kamailio.svg?branch=master
    :target: https://travis-ci.org/mwolff44/pyfb-kamailio

.. image:: https://codecov.io/gh/mwolff44/pyfb-kamailio/branch/master/graph/badge.svg
    :target: https://codecov.io/gh/mwolff44/pyfb-kamailio

Kamailio package for django project, mainly used by PyFreeBilling project

Documentation
-------------

The full documentation is at https://pyfb-kamailio.readthedocs.io.

Quickstart
----------

Install Pyfb-kamailio::

    pip install pyfb-kamailio

Add it to your `INSTALLED_APPS`:

.. code-block:: python

    INSTALLED_APPS = (
        ...
        'pyfb_kamailio.apps.PyfbKamailioConfig',
        ...
    )

Add Pyfb-kamailio's URL patterns:

.. code-block:: python

    from pyfb_kamailio import urls as pyfb_kamailio_urls


    urlpatterns = [
        ...
        url(r'^', include(pyfb_kamailio_urls)),
        ...
    ]

Apply migrations :

    python manage.py migrate

Upload initial data :

    python manage.py loaddata pyfb_kamailio

Features
--------

Kamailio modules supported by this application :

* acc
* dialog
* htable
* mtree
* permissions
* pipelimit
* registrar
* rtpengine
* speeddial
* uac
* userblacklist
* userloc

Running Tests
-------------

Does the code actually work?

::

    source <YOURVIRTUALENV>/bin/activate
    (myenv) $ pip install tox
    (myenv) $ tox

Credits
-------

Tools used in rendering this package:

*  Cookiecutter_
*  `cookiecutter-djangopackage`_

.. _Cookiecutter: https://github.com/audreyr/cookiecutter
.. _`cookiecutter-djangopackage`: https://github.com/pydanny/cookiecutter-djangopackage




History
-------

1.2.1 (2020-05-20)
++++++++++++++++++

* add cdr_id field in acc cdr

1.2.0 (2020-05-17)
++++++++++++++++++

* add fields in acc cdr
* update admin views

1.1.0 (2020-05-14)
++++++++++++++++++

* add fields in acc

1.0.3 (2020-03-21)
++++++++++++++++++

* update test
* update uacreg table to be compliant with 5.3 kamailio version

1.0.2 (2019-07-10)
++++++++++++++++++

* admin tweaks for uacreg module

1.0.1 (2019-06-21)
++++++++++++++++++

* Correct fk representation of domain
* Admin enhancements

1.0.0 (2019-05-23)
++++++++++++++++++

* add domain table
* add translations

0.9.4 (2019-03-06)
++++++++++++++++++

* add fields in missed_calls table

0.9.3 (2019-02-26)
++++++++++++++++++

* add topo tables

0.9.2 (2019-02-25)
++++++++++++++++++

* correct field name in ACC table
* add more fielads in ACC and CDR tables
* admin tweaks

0.9.1 (2019-01-30)
++++++++++++++++++

* upload fixtures from migration for initial setup
* new table for statistics

0.9.0 (2018-11-15)
++++++++++++++++++

* First release on PyPI.


