class Cache2(object): def __init__(self): pass @classmethod def get_file_path_from_text(cls, sentence, tts): """ Get a sentence (a text) an return the full path of the file Path syntax: //tts.parameter["language"]/ :param file_path: :return: """ pass @staticmethod def _generate_md5_from_text(text): """ Local function to generate a md5 hash from a string sentence :param text: :return: String """ pass