aboutsummaryrefslogtreecommitdiffstats
path: root/bsie/extractor/__init__.py
blob: 5f385ee076a6747217ea0d48d84938b7986933fd (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
"""Extractors produce triples from some content.

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
"""
# standard imports
import typing

# inner-module imports
from .base import Extractor
from .builder import ExtractorBuilder

# exports
__all__: typing.Sequence[str] = (
    'Extractor',
    'ExtractorBuilder',
    )

## EOF ##