File: __init__.py

package info (click to toggle)
python-wn 1.0.0-3
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid
  • size: 1,100 kB
  • sloc: python: 8,429; xml: 566; sql: 238; makefile: 12
file content (79 lines) | stat: -rw-r--r-- 1,249 bytes parent folder | download | duplicates (2)
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
79
"""
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",
)

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

__version__ = "1.0.0"