Metadata-Version: 2.0
Name: pyfb-direction
Version: 1.0.1
Summary: Phonenumber's direction package
Home-page: https://github.com/mwolff44/pyfb-direction
Author: Mathias WOLFF
Author-email: mathias@celea.org
License: MIT
Keywords: pyfb-direction
Platform: UNKNOWN
Classifier: Development Status :: 3 - Alpha
Classifier: Framework :: Django :: 2.0
Classifier: Intended Audience :: Developers
Classifier: License :: OSI Approved :: MIT License
Classifier: Natural Language :: English
Classifier: Programming Language :: Python :: 3
Classifier: Programming Language :: Python :: 3.4
Classifier: Programming Language :: Python :: 3.5
Classifier: Programming Language :: Python :: 3.6
Requires-Dist: django-model-utils (>=2.0)
Requires-Dist: django-import-export (>=1.0.0)
Requires-Dist: django-countries (>=5.3.2)
Requires-Dist: django-extensions (>=2.1.3)
Requires-Dist: djangorestframework (>=3.7.7)
Requires-Dist: django-crispy-forms (>=1.7.0)
Requires-Dist: django-migrate-sql-deux (>=0.2.1)

=============================
Pyfb-direction
=============================

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

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

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

Phonenumber's direction package

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

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

Quickstart
----------

Install pyfb-direction::

    pip install pyfb-direction

Add it to your `INSTALLED_APPS`:

.. code-block:: python

    INSTALLED_APPS = (
        ...
        'pyfb_direction.apps.PyfbDirectionConfig',
        ...
    )

Add pyfb-direction's URL patterns:

.. code-block:: python

    from pyfb_direction import urls as pyfb_direction_urls


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

Features
--------

* Telephony prefix management linking prefix with destination, country, network type and Carrier
* Admin interface
* CSV import / export
* web template with Bootstrap 4
* APIs 

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.0.1 (2019-01-30)
++++++++++++++++++

* SQL view for Kamailio

1.0.0 (2018-11-15)
++++++++++++++++++

* First release on PyPI.


