Skip to content

Commit 65b2164

Browse files
committed
Exprimental Mathics3 Module Guide section
1 parent 2d9381e commit 65b2164

File tree

5 files changed

+14
-1
lines changed

5 files changed

+14
-1
lines changed

.gitignore

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,5 @@
11
*~
2+
.python-version
23
/.python-version
34
/ChangeLog
45
/build

pymathics/natlang/__init__.py

Lines changed: 10 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -63,7 +63,16 @@
6363
WordSimilarity,
6464
WordStem,
6565
)
66-
from pymathics.natlang.translation import LanguageIdentify
66+
67+
from pymathics.natlang.linguistic_data import (
68+
DictionaryLookup,
69+
DictionaryWordQ,
70+
RandomWord,
71+
WordData,
72+
WordDefinition,
73+
WordList,
74+
)
75+
from pymathics.natlang.linguistic_data.translation import LanguageIdentify
6776
from pymathics.natlang.version import __version__
6877

6978
pymathics_version_data = {
Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
"""
2+
Languages & Translations
3+
"""

0 commit comments

Comments
 (0)