-
Notifications
You must be signed in to change notification settings - Fork 33
Expand file tree
/
Copy path__init__.py
More file actions
78 lines (76 loc) · 1.22 KB
/
Copy path__init__.py
File metadata and controls
78 lines (76 loc) · 1.22 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
"""
Wordnet Interface.
"""
__all__ = (
"ConfigurationError",
"Count",
"DatabaseError",
"Definition",
"Error",
"Example",
"Form",
"Lexicon",
"ProjectError",
"Pronunciation",
"Relation",
"Sense",
"Synset",
"Tag",
"WnWarning",
"Word",
"Wordnet",
"__version__",
"add",
"add_lexical_resource",
"download",
"export",
"lemmas",
"lexicons",
"projects",
"remove",
"reset_database",
"sense",
"senses",
"synset",
"synsets",
"word",
"words",
)
__version__ = "1.1.1"
from wn._add import add, add_lexical_resource, remove
from wn._config import config # noqa: F401
from wn._core import (
Count,
Definition,
Example,
Form,
Pronunciation,
Relation,
Sense,
Synset,
Tag,
Word,
)
from wn._download import download
from wn._exceptions import (
ConfigurationError,
DatabaseError,
Error,
ProjectError,
WnWarning,
)
from wn._export import export
from wn._lexicon import Lexicon
from wn._module_functions import (
lemmas,
lexicons,
projects,
reset_database,
sense,
senses,
synset,
synsets,
word,
words,
)
from wn._wordnet import Wordnet