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
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
|
from types import coroutine
import pyttsx3
import speech_recognition as sr
from Features import GoogleSearch
from win10toast import ToastNotifier
engine = pyttsx3.init('sapi5')
voices = engine.getProperty('voices')
engine.setProperty('voices',voices[1].id)
def Speak(audio):
print(" ")
print(f": {audio}")
engine.say(audio)
engine.runAndWait()
print(" ")
def TakeCommand():
r = sr.Recognizer()
with sr.Microphone() as source:
print(": Listening....")
r.pause_threshold = 1
audio = r.listen(source)
try:
print(": Recognizing...")
query = r.recognize_google(audio,language='en-in')
print(f": Your Command : {query}\n")
except:
return ""
return query.lower()
def TaskExe():
while True:
query = TakeCommand()
if 'google search' in query:
GoogleSearch(query)
elif 'youtube search' in query:
Query = query.replace("Zara","")
query = Query.replace("youtube search","")
from Features import YouTubeSearch
YouTubeSearch(query)
elif 'set alarm' in query:
from Features import Alarm
Alarm(query)
elif 'download' in query:
from Features import DownloadYouTube
DownloadYouTube()
elif 'speed test' in query:
from Features import SpeedTest
SpeedTest()
elif 'whatsapp message' in query:
name = query.replace("whatsapp message","")
name = name.replace("send ","")
name = name.replace("to ","")
Name = str(name)
Speak(f"Whats The Message For {Name}")
MSG = TakeCommand()
from Automations import WhatsappMsg
WhatsappMsg(Name,MSG)
elif 'call' in query:
from Automations import WhatsappCall
name = query.replace("call ","")
name = name.replace("Zara ","")
Name = str(name)
WhatsappCall(Name)
elif 'show chat' in query:
Speak("With Whom ?")
name = TakeCommand()
from Automations import WhatsappChat
WhatsappChat(name)
elif 'space news' in query:
Speak("Tell Me The Date For News Extracting Process .")
Date = TakeCommand()
from Features import DateConverter
Value = DateConverter(Date)
from Nasa import NasaNews
NasaNews(Value)
elif 'about' in query:
from Nasa import Summary
query = query.replace("Zara ","")
query = query.replace("about ","")
Summary(query)
elif 'mars images' in query:
from Nasa import MarsImage
MarsImage()
elif 'track iss' in query:
from Nasa import IssTracker
IssTracker()
elif 'near earth' in query:
from Nasa import Astro
from Features import DateConverter
Speak("Tell Me The Starting Date .")
start = TakeCommand()
start_date = DateConverter(TakeCommand)
Speak("And Tell Me The End Date .")
end = TakeCommand()
end_date = DateConverter(end)
Astro(start_date,end_date=end_date)
elif 'my location' in query:
from Features import My_Location
My_Location()
elif 'where is' in query:
from Automations import GoogleMaps
Place = query.replace("where is ","")
Place = Place.replace("Zara" , "")
GoogleMaps(Place)
elif 'online' in query:
from Automations import OnlinClass
Speak("Tell Me The Name Of The Class .")
Class = TakeCommand()
OnlinClass(Class)
elif 'write a note' in query:
from Automations import Notepad
Notepad()
elif 'dismiss' in query:
from Automations import CloseNotepad
CloseNotepad()
elif 'time table' in query:
from Automations import TimeTable
TimeTable()
elif 'activate the bulb' in query:
from DataBase.HomeAuto.SmartBulb import Activate
Activate()
Speak("Should I Start Or Close The Bulb ?")
step = TakeCommand()
if 'close' in step:
from DataBase.HomeAuto.SmartBulb import CloseLight
CloseLight()
elif 'start' in step:
from DataBase.HomeAuto.SmartBulb import StartLight
StartLight()
elif 'corona cases' in query:
from Features import CoronaVirus
Speak("Which Country's Information ?")
cccc = TakeCommand()
CoronaVirus(cccc)
else:
from DataBase.ChatBot.ChatBot import ChatterBot
reply = ChatterBot(query)
Speak(reply)
if 'bye' in query:
break
elif 'exit' in query:
break
elif 'go' in query:
break
TaskExe()
|