Skip to content
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 3 additions & 1 deletion README.rst
Original file line number Diff line number Diff line change
Expand Up @@ -94,9 +94,11 @@ Parsers also have a ``json`` method which returns valid `NetJSON output <https:/

The available parsers are:

* ``netdiff.OlsrParser``: parser for the OLSR 0.6.x jsoninfo plugin
* ``netdiff.BatmanParser``: parser for the batman-advanced alfred tool
* ``netdiff.Bmx6Parser``: parser for BMX6
* ``netdiff.CnmlParser``: parser for `CNML <http://cnml.info/`__ 0.1
* ``netdiff.NetJsonParser``: parser for the ``NetworkGraph`` `NetJSON object <https://github.com/interop-dev/json-for-networks#network-graph>`__.
* ``netdiff.OlsrParser``: parser for the OLSR 0.6.x jsoninfo plugin

Parsers must be initialized with a string which can represent one of the following:

Expand Down
1 change: 1 addition & 0 deletions netdiff/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -5,4 +5,5 @@
from .parsers.bmx6 import Bmx6Parser # noqa
from .parsers.netjson import NetJsonParser # noqa
from .parsers.cnml import CnmlParser # noqa
from .parsers.bmx6 import Bmx6Parser # noqa
from .utils import diff # noqa