dengjen-tts-python 1.2.0

Python bindings for the dengjen-tts speech synthesis engine
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
# coding: utf-8

import os

os.putenv(
    "DENGJEN_ESPEAKNG_DATA_DIRECTORY",
    os.path.abspath(os.path.dirname(__file__))
)

from .pydengjen import *

__doc__ = pydengjen.__doc__
if hasattr(pydengjen, "__all__"):
    __all__ = pydengjen.__all__