Metadata-Version: 1.1
Name: django-tts
Version: 0.3
Summary: A simple Django app to generate speach from text
Home-page: https://github.com/g10k/django-speach-synthesizer
Author: Sergey Vlasov
Author-email: g10k.info@gmail.com
License: BSD License
Description: =====
        Django Text to Speach generator
        =====
        
        Django Text to Speach is a simple Django app to create .wav files from your text
        
        Must be installed RHVoice-test utilite on Unix Machine
        
        Detailed documentation is in the "docs" directory.
        
        Quick start
        -----------
        
        
        1. On your machine which you launch django applicaton must be installed RHVoice-test utilite, which create wav files from text.
           Instalation instructions and documentation see there: https://github.com/Olga-Yakovleva/RHVoice.
           Also see there Docker all installed in. https://github.com/g10k/sw_tts
        
        2. Add some apps  to your INSTALLED_APPS setting like this::
        
            INSTALLED_APPS = [
                'rest_framework',
                'tts',
            ]
        
        3. Include the polls URLconf in your project urls.py like this::
        
            url(r'^tts/', include('tts.urls')),
        
        4. Run `python manage.py migrate` to create the polls models.
        
        5. Start the development server and visit http://127.0.0.1:8000/tts/
           to see docs and available api
Platform: UNKNOWN
Classifier: Environment :: Web Environment
Classifier: Framework :: Django
Classifier: Framework :: Django :: 1.9
Classifier: Intended Audience :: Developers
Classifier: License :: OSI Approved :: BSD License
Classifier: Operating System :: OS Independent
Classifier: Programming Language :: Python
Classifier: Programming Language :: Python :: 3.5
Classifier: Topic :: Internet :: WWW/HTTP
Classifier: Topic :: Internet :: WWW/HTTP :: Dynamic Content
