-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathVoice_assistant.py
62 lines (57 loc) · 1.9 KB
/
Voice_assistant.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
import speech_recognition as sr
import pyttsx3 as tts
import pywhatkit
import pyjokes
import wikipedia
import python_weather as pw
weather = pw.Client(format=pw.IMPERIAL)
listener = sr.Recognizer()
engine = tts.init()
voices = engine.getProperty('voices')
engine.setProperty('voice', voices[0].id)
def talk(text):
engine.say(text)
engine.runAndWait()
def activate_jay():
with sr.Microphone() as source:
print('recording...')
voice = listener.listen(source)
command = listener.recognize_google(voice)
command = command.lower()
print(command)
if 'j' in command:
command = command.replace('jay ', '')
talk('Request received.')
if 'play' in command:
song = command.replace('play ', '')
talk('playing ' + song)
pywhatkit.playonyt(song)
if 'hear' in command:
song = command.replace('I want to hear ', '')
talk('playing ' + song)
pywhatkit.playonyt(song)
elif 'joke' in command:
talk('Here is a joke for you.')
talk(pyjokes.get_joke())
elif 'who are you' in command:
talk('I am a virtual assistant of Dev Shah.')
elif 'who' in command:
person = command.replace('who is', '')
info = wikipedia.summary(person, 1)
talk(info)
elif 'what' in command:
person = command.replace('what is', '')
info = wikipedia.summary(person, 1)
talk(info)
elif 'how is weather in' in command:
city = command.replace('how is weather in ','')
talk(weather(city))
elif 'what is weather of' in command:
city = command.replace('what is weather of ','')
talk(weather(city))
print(weather(city))
else:
talk('Pardon?')
activate_jay()
talk('Jarvis is ready to comply')
activate_jay()