-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathmenu.py
276 lines (257 loc) · 8.93 KB
/
menu.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
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
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
import os
import pyaudio
import speech_recognition as sr
import pyttsx3
r=sr.Recognizer()
r.dynamic_energy_threshold = False
def saykube():
with sr.Microphone() as source:
print('Say the command')
command=r.recognize_google(r.listen(source,timeout=5))
print('Command heard')
command=command.lower()
print(command)
os.system(command)
def typekube():
command=input("Enter the command: ")
os.system(command)
def typeeks():
command=input("Enter the command: ")
os.system(command)
def sayeks():
with sr.Microphone() as source:
print('Say the command')
command=r.recognize_google(r.listen(source,timeout=5))
print('Command heard')
command=command.lower()
print(command)
os.system(command)
def main():
username=""
command=""
loc=""
name=""
valid=False
engine= pyttsx3.init()
engine.setProperty('voice',engine.getProperty('voices')[1].id)
engine.setProperty('rate',engine.getProperty('rate')-10)
os.system("cls")
pyttsx3.speak("good day")
pyttsx3.speak("what should i call you")
print("Your name?")
username=input()
pyttsx3.speak("okay")
pyttsx3.speak(username)
os.system("cls")
while(True):
valid=False
pyttsx3.speak("what do you want me to do")
with sr.Microphone() as source:
print('What do you want me to do?')
command=r.recognize_google(r.listen(source,timeout=5))
print('Command heard')
command=command.lower()
if not (("don't" in command) or ("do not" in command)):
if "curl" in command:
pyttsx3.speak("Enter url")
print("Enter URL",end=':')
loc=input()
pyttsx3.speak("Browsing via curl")
os.system('curl '+loc)
valid=True
if "terminal" in command or "prompt" in command:
pyttsx3.speak("enter the name of the terminal")
name=input()
pyttsx3.speak("opening new command terminal")
os.system('start "'+name+'"')
valid=True
if "github" in command:
pyttsx3.speak("opening github")
os.system('start chrome "github.com"')
valid=True
if "whatsapp" in command:
pyttsx3.speak("opening whatsapp web")
os.system('start chrome "web.whatsapp.com"')
valid=True
if "facebook" in command:
pyttsx3.speak("opening facebook")
os.system('start chrome "facebook.com"')
valid=True
if "linkedin" in command or "linked in" in command:
pyttsx3.speak("opening linked in")
os.system('start chrome "linkedin.com"')
valid=True
if "nothing" in command or "talk" in command:
pyttsx3.speak("sorry")
pyttsx3.speak("i cannot converse yet")
continue
if "note" in command or "edit" in command or (("create" in command or "make" in command or "view" in command or "open" in command) and ("file" in command)) :
print("Enter filename or address(for untitled file in current directory,just press enter)",end=':')
pyttsx3.speak("Enter filename or address")
loc=input()
pyttsx3.speak("opening notepad")
os.system("start notepad "+loc)
valid=True
if ("chrome" in command) or ("browser" in command) or ("browse" in command):
print("Enter url(For no url,just press enter)",end=':')
pyttsx3.speak("Enter site address")
loc=input()
pyttsx3.speak("opening google chrome")
os.system("start chrome "+loc)
valid=True
if ("paint" in command) or ("draw" in command):
pyttsx3.speak("opening microsoft paint")
os.system("start mspaint")
valid=True
if ("wmp" in command) or ("player" in command):
pyttsx3.speak("opening windows media player")
os.system("start wmplayer")
valid=True
if ("date" in command):
pyttsx3.speak("the date details are")
os.system("date /t")
valid=True
if ("time" in command):
pyttsx3.speak("the time details are")
os.system("time")
valid=True
if ("list" in command) or ("dir" in command) or ("directory" in command) or ("go" in command):
print("Enter target location",end=':')
loc=input()
pyttsx3.speak("listing contents")
os.system("dir "+loc)
valid=True
if ("del" in command) or ("remove" in command) or ("rm" in command):
pyttsx3.speak('Enter target file name')
print("Enter target file name",end=':')
loc=input()
pyttsx3.speak("deleting file")
os.system("del "+loc)
valid=True
if (("create" in command or "make" in command) and ("folder" in command or "directory" in command)):
print("Enter location")
loc=input()
print("Enter folder/directory name")
name=input()
pyttsx3.speak("creating folder")
os.system("mkdir "+name)
valid=True
if "camera" in command:
pyttsx3.speak("opening the camera")
os.system("start microsoft.windows.camera:")
valid=True
if "setting" in command:
pyttsx3.speak("opening settings")
os.system("start ms-settings:")
valid=True
if "note" in command or "edit" in command or "create" in command or "view" in command or "open" in command:
if "image" in command or "img" in command or "pic" in command:
pyttsx3.speak("these are the files available in the current folder")
os.system("dir")
pyttsx3.speak("Enter image name or address")
print("\n\nEnter image name or address",end=':')
loc=input()
pyttsx3.speak("opening image")
os.system(loc+name)
valid=True
if "audio" in command or "sound" in command or "music" in command or "listen" in command or "play" in command:
pyttsx3.speak("these are the files available in the current folder")
os.system(dir)
pyttsx3.speak("enter the name of the audio file")
print("Enter audio file name",end=':')
loc=input()
pyttsx3.speak("opening audio")
os.system(name)
valid=True
if "execute" in command or "command" in command or "run" in command:
pyttsx3.speak("which command do you want to execute")
print("Enter command",end=':')
name=input()
os.system(name)
valid=True
if "explore" in command or "goto" in command or "go to" in command:
pyttsx3.speak("opening file explorer")
os.system("explorer")
valid=True
if (('minikube' in command) or ('mini cube' in command)) and ('start' in command):
os.system("minikube start")
valid=True
if (('minikube' in command) or ('mini cube' in command)) and ('dashboard' in command):
os.system("minikube dashboard")
valid=True
if (('minikube' in command) or ('Mini cube' in command)) and ('IP' in command):
os.system("minikube ip")
valid=True
if ('kubectl' in command) or ('kubernetes' in command):
print("Do you want to type the command or say it?")
pyttsx3.speak("Do you want to type the command or say it?")
while True:
with sr.Microphone() as source:
command=r.recognize_google(r.listen(source,timeout=5))
print('Command heard')
command=command.lower()
if 'type' in command:
print("Type it:")
pyttsx3.speak("Type it")
typekube()
break
elif 'say' in command:
print("Say it:")
pyttsx3.speak("Say it")
saykube()
break
else:
print("Please say it again...")
pyttsx3.speak("Please say it again...")
valid=True
if ('IP' in command) or ('IP' in command and 'configuration' in command):
os.system("ipconfig")
valid=True
elif ('eks' in command) or ('eksctl' in command) or ('Elastic Kubernetes Service' in command):
print("Do you want to type the command or say it?")
pyttsx3.speak("Do you want to type the command or say it?")
while True:
with sr.Microphone() as source:
command=r.recognize_google(r.listen(source,timeout=5))
print('Command heard')
if 'type' in command:
print("Type it:")
pyttsx3.speak("Type it")
typeeks()
break
elif 'say' in command:
print("Say it:")
pyttsx3.speak("Say it")
sayeks()
break
else:
print("Please say it again...")
pyttsx3.speak("Please say it again...")
if ("exit" in command) or ("stop" in command) or ("bye" in command):
pyttsx3.speak("bye")
pyttsx3.speak(username)
pyttsx3.speak("have a great day ahead")
break
if not valid:
pyttsx3.speak("sorry,i did not understand the command")
pyttsx3.speak("please try again")
continue
pyttsx3.speak("will that be all")
with sr.Microphone() as source:
print('Will that be all?')
command=r.recognize_google(r.listen(source))
print('Command heard')
if "yes" in command or command=="y":
pyttsx3.speak("bye")
pyttsx3.speak(username)
pyttsx3.speak("have a great day ahead")
break
elif "no" in command or command=="n":
pyttsx3.speak("okay")
else:
pyttsx3.speak("I did not understand that command")
pyttsx3.speak("but i am optimistic")
pyttsx3.speak("lets go again")
os.system("cls")
if __name__ == "__main__":
main()