blob: ef3134311967a469b328fa4ad1c0e92989cdd989 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
|
"""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
"""
# imports
import typing
# exports
__all__: typing.Sequence[str] = []
## EOF ##
|