Metadata-Version: 1.0
Name: pygsr
Version: 0.1
Summary: Simple way to access google api for speech recognition with python
Home-page: https://bitbucket.org/drneox/pygsr
Author: Carlos Ganoza Plasencia
Author-email: cganozap@gmail.com
License: GPL
Description: ****************************************
        PyGSR
        ****************************************
        Simple way to access google api for speech recognition with python
        
        =============
        Dependencies
        =============
            * sox     -    apt-get install sox
            * pyaudio  -  apt-get install python-pyaudio
        
        
        Links:
         * home: https://bitbucket.org/drneox/pygsr/
        
        ============
        Usage
        ============
        
        Example::
        
            from pygsr import Pygsr
            speech = Pygsr()
            speech.record(3) # duration in seconds (3)
            phrase, complete_response = speech.speech_to_text('es_ES') # select the language
            print phrase
        
        
        
        
        
Keywords: speech recognition
Platform: UNKNOWN
