コード例 #1
0
ファイル: make_pickle.py プロジェクト: EeMMeR/FuzzyArabicDict
def process_tableAC():
    for (left, right) in process_tableXY("tableac.txt"):
        ac[left].append(right)
コード例 #2
0
ファイル: make_pickle.py プロジェクト: EeMMeR/FuzzyArabicDict
def process_tableAB():
    for (left, right) in process_tableXY("tableab.txt"):
        ab[left].append(right)
コード例 #3
0
ファイル: make_pickle.py プロジェクト: EeMMeR/FuzzyArabicDict
def process_tableBC():
    for (left, right) in process_tableXY("tablebc.txt"):
        bc[left].append(right)
コード例 #4
0
def process_tableBC():
    for (left, right) in process_tableXY("tablebc.txt"):
        bc[left].append(right)
        for entry in suffixes:
            if entry.cat == right:
                suffixes_for_cat[left].append(entry)
コード例 #5
0
def process_tableAB():
    for (left, right) in process_tableXY("tableab.txt"):
        ab[left].append(right)
        for entry in prefixes:
            if entry.cat == left:
                prefixes_for_cat[right].append(entry)
コード例 #6
0
def process_tableAC():
    for (left, right) in process_tableXY("tableac.txt"):
        ac[left].append(right)
コード例 #7
0
def process_tableBC():
    for (left, right) in process_tableXY("tablebc.txt"):
        bc[left].append(right)
コード例 #8
0
def process_tableAB():
    for (left, right) in process_tableXY("tableab.txt"):
        ab[left].append(right)