gitextract_nedunrbu/ ├── .gitignore ├── LICENSE ├── MANIFEST.in ├── README.rst ├── docs/ │ ├── Makefile │ ├── changelog.rst │ ├── conf.py │ ├── drivers.rst │ ├── engine.rst │ ├── index.rst │ └── install.rst ├── pyttsx/ │ ├── __init__.py │ ├── driver.py │ ├── drivers/ │ │ ├── __init__.py │ │ ├── _espeak.py │ │ ├── dummy.py │ │ ├── espeak.py │ │ ├── nsss.py │ │ └── sapi5.py │ ├── engine.py │ └── voice.py ├── setup.py └── tests/ ├── manual/ │ └── run.py └── unit/ ├── test_all.py ├── test_lifecycle.py ├── test_prop.py ├── test_say.py └── test_setup.py