Metadata-Version: 1.1
Name: django-voice-bot
Version: 0.1
Summary: A Django app to make voice-bots.
Home-page: https://github.com/Dostoyewski/django_voice_bot
Author: Fedor Kondratenko
Author-email: fdrkondor@gmail.com
License: BSD-3-Clause
Description: ================
        Django-voice-bot
        ================
        
        Package for django support bot with speech recognition and voice commands.
        
        Detailed documentation is in the "docs" directory.
        
        Quick start
        -----------
        
        1. Add "voice-bot" to your INSTALLED_APPS setting like this::
        
            INSTALLED_APPS = [
                ...
                'voice-bot',
            ]
        
        2. Include the polls URLconf in your project urls.py like this::
        
            path('/', include('voice-bot.urls')),
        
        3. Run ``python manage.py migrate`` to create the voice-bot models.
        
        4. Start the development server and visit http://127.0.0.1:8000/admin/
           to create a voice-bot (you'll need the Admin app enabled).
        
        5. Setup your bot
Platform: UNKNOWN
Classifier: Environment :: Web Environment
Classifier: Framework :: Django
Classifier: Framework :: Django :: 3.1
Classifier: Intended Audience :: Developers
Classifier: License :: OSI Approved :: BSD License
Classifier: Operating System :: OS Independent
Classifier: Programming Language :: Python
Classifier: Programming Language :: Python :: 3
Classifier: Programming Language :: Python :: 3 :: Only
Classifier: Programming Language :: Python :: 3.6
Classifier: Programming Language :: Python :: 3.7
Classifier: Programming Language :: Python :: 3.8
Classifier: Topic :: Internet :: WWW/HTTP
Classifier: Topic :: Internet :: WWW/HTTP :: Dynamic Content
