annif.vocab   A
last analyzed

Complexity

Total Complexity 0

Size/Duplication

Total Lines 21
Duplicated Lines 0 %

Importance

Changes 0
Metric Value
eloc 18
dl 0
loc 21
rs 10
c 0
b 0
f 0
wmc 0
1
"""Annif vocabulary functionality"""
2
3
from .rules import kwargs_to_exclude_uris
4
from .skos import VocabFileSKOS
5
from .subject_file import VocabFileCSV, VocabFileTSV
6
from .subject_index import SubjectIndexFile, SubjectIndexFilter
7
from .types import Subject, SubjectIndex, VocabSource
8
from .vocab import AnnifVocabulary
9
10
__all__ = [
11
    "AnnifVocabulary",
12
    "kwargs_to_exclude_uris",
13
    "Subject",
14
    "SubjectIndex",
15
    "SubjectIndexFile",
16
    "SubjectIndexFilter",
17
    "VocabFileCSV",
18
    "VocabFileSKOS",
19
    "VocabFileTSV",
20
    "VocabSource",
21
]
22