-
Notifications
You must be signed in to change notification settings - Fork 1
/
lexicon.py
78 lines (43 loc) · 1021 Bytes
/
lexicon.py
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
from verbs import (
Verb1, Verb1B, Verb1C,
Verb2, Verb2B, Verb2C, Verb2D, Verb2E, Verb2F, Verb2G
)
class LUW(Verb1):
stem1 = "λυ+"
class TIMAW(Verb1B):
stem1 = "τιμα"
class POIEW(Verb1C):
stem1 = "ποιε"
class DHLOW(Verb1B):
stem1 = "δηλο"
class DIDWMI(Verb2):
stem1 = "διδο"
stem2 = "δο"
class TIQHMI(Verb2B):
stem1 = "τιθε"
stem2 = "θε"
class hIHMI(Verb2C):
stem1 = "ἱε"
stem2 = "ἑ"
class hISTHMI(Verb2D):
stem1 = "ἱστα"
stem2 = "στα"
class hISTHMI1(Verb2G):
stem2 = "στα"
class DEIKNUMI(Verb2E):
stem1 = "δεικνυ"
class GIGNWSKW(Verb2F):
stem2 = "γνο"
VERBS = {
"λύω": LUW,
"τιμῶ": TIMAW,
"ποιῶ": POIEW,
"δηλῶ": DHLOW,
"δίδωμι": DIDWMI,
"τίθημι": TIQHMI,
"ἵημι": hIHMI,
"ἵστημι": hISTHMI,
"ἵστημι/1": hISTHMI1,
"δείκνυμι": DEIKNUMI,
"γιγνώσκω": GIGNWSKW,
}