Metadata-Version: 2.1
Name: grokspeechrec
Version: 0.0.1
Summary: TEST APP TMLC
Home-page: https://github.com/visalakshi2001/grokspeechrec/
Author: GROKLEARNING
Author-email: GROKLEARNING <visalakshi2001@gmail.com>
License: MIT
Project-URL: Homepage, https://github.com/visalakshi2001/grokspeechrec
Project-URL: Bug Tracker, https://github.com/visalakshi2001/grokspeechrec/issues
Keywords: speech recognizer
Classifier: Programming Language :: Python :: 3
Classifier: License :: OSI Approved :: MIT License
Classifier: Operating System :: OS Independent
Requires-Python: >=3.7
Description-Content-Type: text/markdown
License-File: LICENSE

# Speech Recognition Wrapper

[![PyPI package](https://img.shields.io/badge/pip%20install-grokspeechrec-blue)](https://pypi.org/project/grokspeechrec/)  &nbsp;  [![version number](https://img.shields.io/pypi/v/grokspeechrec?color=red&label=version)](https://pypi.org/project/grokspeechrec/releases)  


---

This package is a wrapper for [Speech Recognition Module](https://github.com/Uberi/speech_recognition#readme), created to import directly and transcribe Speech Input. You would need a Microphone input and a Speaker output connected to your environment before starting.

## Installation
This package comes with internal dependency of PyAudio and Vosk model.
The package installation takes care of installing all the dependecies, by performing the following steps:

```bash
pip install --upgrade grokspeechrec
```

## Usage
Once you have it installed, import the module and use it to pass Microphone Speech as shown below:

    from grokspeechrec import speechrec

    rec = speechrec.app.Recognize()
    output = rec.recognize(rec.model)

The `output` will contain the transcribed results.


