lookyloo/lookyloo/__init__.py

13 lines
310 B
Python

import logging
from .context import Context # noqa
from .indexing import Indexing # noqa
from .lookyloo import Lookyloo, CaptureSettings # noqa
logging.getLogger(__name__).addHandler(logging.NullHandler())
__all__ = ['Lookyloo',
'Indexing',
'Context',
'CaptureSettings']