diff options
Diffstat (limited to 'bsie/extractor/__init__.py')
-rw-r--r-- | bsie/extractor/__init__.py | 14 |
1 files changed, 9 insertions, 5 deletions
diff --git a/bsie/extractor/__init__.py b/bsie/extractor/__init__.py index ef31343..36fa9ba 100644 --- a/bsie/extractor/__init__.py +++ b/bsie/extractor/__init__.py @@ -2,14 +2,18 @@ Each Extractor class is linked to the Reader class whose content it requires. -Part of the bsie module. -A copy of the license is provided with the project. -Author: Matthias Baumgartner, 2022 """ -# imports +# standard imports import typing +# inner-module imports +from .base import Extractor +from .builder import ExtractorBuilder + # exports -__all__: typing.Sequence[str] = [] +__all__: typing.Sequence[str] = ( + 'Extractor', + 'ExtractorBuilder', + ) ## EOF ## |