saol 0.1.0__py3-none-any.whl

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
saol/__init__.py ADDED
@@ -0,0 +1,2 @@
1
+ from .types import SaolEntry as SaolEntry
2
+ from .wordlist import * # noqa: F403
saol/py.typed ADDED
File without changes
saol/types.py ADDED
@@ -0,0 +1,7 @@
1
+ from typing import NamedTuple
2
+
3
+
4
+ class SaolEntry(NamedTuple):
5
+ word: str # Normaliserat ord i grundform
6
+ upos: str # Ordklass
7
+ conj: str # Information om böjningsformer
@@ -0,0 +1 @@
1
+ from .saol14 import words as saol14