Metadata-Version: 1.1
Name: netdiff
Version: 0.4.7
Summary: Python library for parsing network topology data (eg: dynamic routing protocols, NetJSON, CNML) and detect changes.
Home-page: https://github.com/ninuxorg/netdiff
Author: Federico Capoano (nemesisdesign)
Author-email: ninux-dev@ml.ninux.org
License: MIT
Download-URL: https://github.com/ninuxorg/netdiff/releases
Description: netdiff
        =======
        
        .. image:: https://travis-ci.org/ninuxorg/netdiff.svg
           :target: https://travis-ci.org/ninuxorg/netdiff
        
        .. image:: https://coveralls.io/repos/ninuxorg/netdiff/badge.svg
          :target: https://coveralls.io/r/ninuxorg/netdiff
        
        .. image:: https://requires.io/github/ninuxorg/netdiff/requirements.svg?branch=master
           :target: https://requires.io/github/ninuxorg/netdiff/requirements/?branch=master
           :alt: Requirements Status
        
        .. image:: https://badge.fury.io/py/netdiff.svg
           :target: http://badge.fury.io/py/netdiff
        
        .. image:: https://img.shields.io/pypi/dm/netdiff.svg
           :target: https://pypi.python.org/pypi/netdiff
        
        ------------
        
        Netdiff is a simple Python library that provides utilities for parsing network topology
        data of open source dynamic routing protocols and detecting changes in these topologies.
        
        **Current features**:
        
        * `parse different formats <https://github.com/ninuxorg/netdiff#parsers>`_
        * `detect changes in two topologies <https://github.com/ninuxorg/netdiff#basic-usage-example>`_
        * `return consistent NetJSON output <https://github.com/ninuxorg/netdiff#netjson-output>`_
        * uses the popular `networkx <https://networkx.github.io/>`_ library under the hood
        
        **Goals**:
        
        * provide an abstraction layer to facilitate parsing different network topology formats
        * add support for the most popular dynamic open source routing protocols
        * facilitate detecting changes in network topology for monitoring purposes
        * provide standard `NetJSON`_ output
        * keep the library small with as few dependencies as possible
        
        **Currently used by**
        
        * `django-netjsongraph <https://github.com/interop-dev/django-netjsongraph>`_
        * `nodeshot <https://github.com/ninuxorg/nodeshot>`_
        
        Install stable version from pypi
        --------------------------------
        
        Install from pypi:
        
        .. code-block:: shell
        
            pip install netdiff
        
        Install development version
        ---------------------------
        
        Install tarball:
        
        .. code-block:: shell
        
            pip install https://github.com/ninuxorg/netdiff/tarball/master
        
        Alternatively you can install via pip using git:
        
        .. code-block:: shell
        
            pip install -e git+git://github.com/ninuxorg/netdiff#egg=netdiff
        
        If you want to contribute, install your cloned fork:
        
        .. code-block:: shell
        
            git clone git@github.com:<your_fork>/netdiff.git
            cd netdiff
            python setup.py develop
        
        Basic Usage Example
        -------------------
        
        Calculate diff of an OLSR 0.6.x topology:
        
        .. code-block:: python
        
            from netdiff import OlsrParser
            from netdiff import diff
        
            old = OlsrParser('./stored-olsr.json')
            new = OlsrParser('telnet://127.0.0.1:9090')
            diff(old, new)
        
        In alternative, you may also use the subtraction operator:
        
        .. code-block:: python
        
            from netdiff import OlsrParser
            from netdiff import diff
        
            old = OlsrParser('./stored-olsr.json')
            new = OlsrParser('telnet://127.0.0.1:9090')
            old - new
        
        The output will be an ordered dictionary with three keys:
        
        * added
        * removed
        * changed
        
        Each key will contain a dict compatible with the `NetJSON NetworkGraph format`_
        representing respectively:
        
        * the nodes and links that have been added to the topology
        * the nodes and links that have been removed from the topology
        * links that are present in both topologies but their cost changed
        
        If no changes are present, keys will contain ``None``.
        
        So if between ``old`` and ``new`` there are no changes, the result will be:
        
        .. code-block:: python
        
            {
                "added": None
                "removed": None,
                "changed": None
            }
        
        While if there are changes, the result will look like:
        
        .. code-block:: python
        
            {
                "added": {
                    "type": "NetworkGraph",
                    "protocol": "OLSR",
                    "version": "0.6.6",
                    "revision": "5031a799fcbe17f61d57e387bc3806de",
                    "metric": "ETX",
                    "nodes": [
                        {
                            "id": "10.150.0.7"
                        },
                        {
                            "id": "10.150.0.6"
                        }
                    ],
                    "links": [
                        {
                            "source": "10.150.0.3",
                            "target": "10.150.0.7",
                            "cost": 1.50390625
                        },
                        {
                            "source": "10.150.0.3",
                            "target": "10.150.0.6",
                            "cost": 1.0
                        }
                    ]
                },
                "removed": {
                    "type": "NetworkGraph",
                    "protocol": "OLSR",
                    "version": "0.6.6",
                    "revision": "5031a799fcbe17f61d57e387bc3806de",
                    "metric": "ETX",
                    "nodes": [
                        {
                            "id": "10.150.0.8"
                        }
                    ],
                    "links": [
                        {
                            "source": "10.150.0.7",
                            "target": "10.150.0.8",
                            "cost": 1.0
                        }
                    ]
                },
                "changed": {
                    "type": "NetworkGraph",
                    "protocol": "OLSR",
                    "version": "0.6.6",
                    "revision": "5031a799fcbe17f61d57e387bc3806de",
                    "metric": "ETX",
                    "nodes": [],
                    "links": [
                        {
                            "source": "10.150.0.3",
                            "target": "10.150.0.2",
                            "cost": 1.0
                        }
                    ]
                }
            }
        
        Parsers
        -------
        
        Parsers are classes that extend ``netdiff.base.BaseParser`` and implement a ``parse`` method
        which is in charge of converting a python data structure into ``networkx.Graph`` object and return the result.
        
        Parsers also have a ``json`` method which returns valid `NetJSON output <https://github.com/ninuxorg/netdiff#netjson-output>`_.
        
        The available parsers are:
        
        * ``netdiff.OlsrParser``: parser for the `olsrd jsoninfo plugin <http://www.olsr.org/?q=jsoninfo_plugin>`_
          or the older `txtinfo plugin <http://www.olsr.org/?q=txtinfo_plugin>`_
        * ``netdiff.BatmanParser``: parser for the `batman-advanced alfred tool <http://www.open-mesh.org/projects/open-mesh/wiki/Alfred>`_
          (supports also the legacy txtinfo format inherited from olsrd)
        * ``netdiff.Bmx6Parser``: parser for the BMX6 `b6m tool <http://dev.qmp.cat/projects/b6m>`_
        * ``netdiff.CnmlParser``: parser for `CNML 0.1 <http://cnml.info/>`_
        * ``netdiff.NetJsonParser``: parser for the `NetJSON NetworkGraph format`_.
        
        Initialization arguments
        ~~~~~~~~~~~~~~~~~~~~~~~~
        
        **data**: the only required argument, different inputs are accepted:
        
        * JSON formatted string representing the topology
        * python `dict` (or subclass of `dict`) representing the topology
        * string representing a HTTP URL where the data resides
        * string representing a telnet URL where the data resides
        * string representing a file path where the data resides
        
        **timeout**: integer representing timeout in seconds for HTTP or telnet requests, defaults to None
        
        **verify**: boolean indicating to the `request library whether to do SSL certificate
        verification or not <http://docs.python-requests.org/en/latest/user/advanced/#ssl-cert-verification>`_
        
        Initialization examples
        ~~~~~~~~~~~~~~~~~~~~~~~
        
        Local file example:
        
        .. code-block:: python
        
            from netdiff import BatmanParser
            BatmanParser('./my-stored-topology.json')
        
        HTTP example:
        
        .. code-block:: python
        
            from netdiff import NetJsonParser
            url = 'https://raw.githubusercontent.com/interop-dev/netjson/master/examples/network-graph.json'
            NetJsonParser(url)
        
        Telnet example with ``timeout``:
        
        .. code-block:: python
        
            from netdiff import OlsrParser
            OlsrParser('telnet://127.0.1:8080', timeout=5)
        
        HTTPS example with self-signed SSL certificate using ``verify=False``:
        
        .. code-block:: python
        
            from netdiff import NetJsonParser
            OlsrParser('https://myserver.mydomain.com/topology.json', verify=False)
        
        NetJSON output
        --------------
        
        Netdiff parsers can return a valid `NetJSON`_
        ``NetworkGraph`` object:
        
        .. code-block:: python
        
            from netdiff import OlsrParser
        
            olsr = OlsrParser('telnet://127.0.0.1:9090')
        
            # will return a dict
            olsr.json(dict=True)
        
            # will return a JSON formatted string
            print(olsr.json(indent=4))
        
        Output:
        
        .. code-block:: javascript
        
            {
                "type": "NetworkGraph",
                "protocol": "OLSR",
                "version": "0.6.6",
                "revision": "5031a799fcbe17f61d57e387bc3806de",
                "metric": "ETX",
                "nodes": [
                    {
                        "id": "10.150.0.3"
                    },
                    {
                        "id": "10.150.0.2"
                    },
                    {
                        "id": "10.150.0.4"
                    }
                ],
                "links": [
                    {
                        "source": "10.150.0.3",
                        "target": "10.150.0.2",
                        "cost": 2.4
                    },
                    {
                        "source": "10.150.0.3",
                        "target": "10.150.0.4",
                        "cost": 1.0
                    }
                ]
            }
        
        Exceptions
        ----------
        
        All the exceptions are subclasses of ``netdiff.exceptions.NetdiffException``.
        
        ConversionException
        ~~~~~~~~~~~~~~~~~~~
        
        ``netdiff.exceptions.ConversionException``
        
        Raised when netdiff can't recognize the format passed to the parser.
        
        Not necessarily an error, should be caught and managed in order to support additional formats.
        
        The data which was retrieved from network/storage can be accessed via the "data" attribute, eg:
        
        .. code-block:: python
        
            def to_python(self, data):
                try:
                    return super(OlsrParser, self).to_python(data)
                except ConversionException as e:
                    return self._txtinfo_to_jsoninfo(e.data)
        
        ParserError
        ~~~~~~~~~~~
        
        ``netdiff.exceptions.ParserError``
        
        Raised when the format is recognized but the data is invalid.
        
        NetJsonError
        ~~~~~~~~~~~~
        
        ``netdiff.exceptions.NetJsonError``
        
        Raised when the ``json`` method of ``netdiff.parsers.BaseParser`` does not have enough data
        to be compliant with the `NetJSON NetworkGraph format`_ specification.
        
        TopologyRetrievalError
        ~~~~~~~~~~~~~~~~~~~~~~
        
        ``netdiff.exceptions.TopologyRetrievalError``
        
        Raised when it is not possible to retrieve the topology data
        (eg: the URL might be temporary unreachable).
        
        Known Issues
        ------------
        
        ConnectionError: BadStatusLine
        ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
        
        If you get a similar error when performing a request to the `jsoninfo plugin <http://www.olsr.org/?q=jsoninfo_plugin>`_ of
        `olsrd <http://www.olsr.org/>`_ (version 0.6 to 0.9) chances are high that http headers are disabled.
        
        To fix it turn on http headers in your olsrd configuration file, eg::
        
            LoadPlugin "olsrd_jsoninfo.so.0.0"
            {
                PlParam "httpheaders" "yes"   # add this line
                PlParam "Port" "9090"
                PlParam "accept" "0.0.0.0"
            }
        
        Running tests
        -------------
        
        Install your forked repo:
        
        .. code-block:: shell
        
            git clone git://github.com/<your_fork>/netdiff
            cd netdiff/
            python setup.py develop
        
        Install test requirements:
        
        .. code-block:: shell
        
            pip install -r requirements-test.txt
        
        Run tests with:
        
        .. code-block:: shell
        
            ./runtests.py
        
        Alternatively, you can use the ``nose`` command (which has a ton of available options):
        
        .. code-block:: shell
        
            nosetests
            nosetests tests.test_olsr  # run only olsr related tests
            nosetests tests/test_olsr.py  # variant form of the previous command
            nosetests tests.test_olsr:TestOlsrParser  # variant form of the previous command
            nosetests tests.test_olsr:TestOlsrParser.test_parse  # run specific test
        
        See test coverage with:
        
        .. code-block:: shell
        
            coverage run --source=netdiff runtests.py && coverage report
        
        Contributing
        ------------
        
        1. Join the `ninux-dev mailing list`_
        2. Fork this repo and install it
        3. Follow `PEP8, Style Guide for Python Code`_
        4. Write code
        5. Write tests for your code
        6. Ensure all tests pass
        7. Ensure test coverage is not under 90%
        8. Document your changes
        9. Send pull request
        
        .. _PEP8, Style Guide for Python Code: http://www.python.org/dev/peps/pep-0008/
        .. _ninux-dev mailing list: http://ml.ninux.org/mailman/listinfo/ninux-dev
        .. _NetJSON NetworkGraph format: http://netjson.org/rfc.html#rfc.section.4
        .. _NetJSON: http://netjson.org
        
Keywords: networking,mesh-network,netjson,olsr,batman,bmx
Platform: Platform Indipendent
Classifier: Development Status :: 3 - Alpha
Classifier: Environment :: Console
Classifier: Intended Audience :: Developers
Classifier: License :: OSI Approved :: MIT License
Classifier: Operating System :: OS Independent
Classifier: Programming Language :: Python
Classifier: Topic :: System :: Networking
Classifier: Programming Language :: Python :: 2.7
Classifier: Programming Language :: Python :: 3.4
