Source code for zensols.zotsite.navvisitor

"""Contains the class that generates the website navigation data structure.

"""
__author__ = 'Paul Landes'

from typing import List, Dict, Union, Any, Type, Optional
import logging
import re
from zensols.zotsite import (
    ZoteroApplicationError, Library, Visitor,
    ZoteroObject, ItemMapper, Item, Note,
)

logger = logging.getLogger(__name__)