One Paragraph of project description goes here
These instructions will get you a copy of the project up and running on your local machine for development and testing purposes. See deployment for notes on how to deploy the project on a live system.
| # Install speech_recognition with pip install speech_recognition | |
| # Install pyaudio with pip install pyaudio | |
| # Make sure you look up full instructions for installing pyaudio | |
| import speech_recognition as sr | |
| recognizer = sr.Recognizer() | |
| mic = sr.Microphone() | |
| with mic as source: |
| import wolframalpha | |
| client = wolframalpha.Client("lilpumpsaysnopeeking") | |
| import wikipedia | |
| import PySimpleGUI as sg | |
| sg.theme('DarkPurple') | |
| layout =[[sg.Text('Enter a command'), sg.InputText()],[sg.Button('Ok'), sg.Button('Cancel')]] | |
| window = sg.Window('PyDa', layout) |