Metadata-Version: 2.1
Name: twoSenses
Version: 0.0.2
Summary: A simple python library to wish, listen and speak
Home-page: https://github.com/gautamdis/Senses_2
Author: Gautam Yadav
Author-email: gautamdiscoder@gmail.com
Keywords: twosenses,Twosenses,twoSenses,TwoSenses,speaking,listening,wishing,python,python3,jarvis,siri,alexa,google assistant,voice,voice assistant,voice recognition,speech recognition,text to speech,speech to text,Gautam Yadav,Gautam,Yadav,gautamdiscoder
Classifier: Development Status :: 1 - Planning
Classifier: License :: OSI Approved :: MIT License
Classifier: Intended Audience :: Developers
Classifier: Programming Language :: Python :: 3
Classifier: Operating System :: Unix
Classifier: Operating System :: MacOS :: MacOS X
Classifier: Operating System :: Microsoft :: Windows
Requires-Python: >=3.6
Description-Content-Type: text/markdown
License-File: LICENSE.txt
Requires-Dist: pyttsx3
Requires-Dist: SpeechRecognition
Requires-Dist: datetime

# twoSenses
twoSenses is a python library which can give your python program the ability to speak and listen.
twoSenses can also be used to greet the user.

## How to install this project
1. Open your terminal 
2. Type `pip install twoSenses` and hit enter

## How to use this project
   Use `.wish()` to wish good morning, good afternoon or good evening
   
   Use `.speak()` to speak
   
   Use `.listen()` to listen
   
## Example
```
import twoSenses
twoSenses.wish()
```

```
import twoSenses
twoSenses.speak()
```

```
import twoSenses
twoSenses.listen()
```
