Source code for yael.navdocument

#!/usr/bin/env python
# coding=utf-8

"""
A representation of the Navigation Document.

Basically, it is a collection of `<nav>` (NavElement) objects.
"""

from yael.element import Element
from yael.jsonable import JSONAble
from yael.namespace import Namespace
from yael.navelement import NavElement
import yael.util

__author__ = "Alberto Pettarin"
__copyright__ = "Copyright 2015, Alberto Pettarin (www.albertopettarin.it)"
__license__ = "MIT"
__version__ = "0.0.6"
__email__ = "alberto@albertopettarin.it"
__status__ = "Development"