File size: 167 Bytes
c6c3369
 
 
 
 
 
 
 
 
1
2
3
4
5
6
7
8
9
10
import json


def get_alphabet_map(path="./src/utils/alphabet_map.json"):

    with open(path, "r") as f:
        alphabet_map = json.load(f)

    return alphabet_map