forked from Hrithvik-Technologies/Bagley-AI
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Bagley.py
352 lines (282 loc) · 11.9 KB
/
Bagley.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
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
# __ __ _ __ __ _ __
# / / / /____(_) /_/ /_ _ __(_) /__
# / /_/ / ___/ / __/ __ \ | / / / //_/
# / __ / / / / /_/ / / / |/ / / ,<
# /_/ /_/_/ /_/\__/_/ /_/|___/_/_/|_|
# ______ __ __ _
# /_ __/__ _____/ /_ ____ ____ / /___ ____ _(_)__ _____
# / / / _ \/ ___/ __ \/ __ \/ __ \/ / __ \/ __ `/ / _ \/ ___/
# / / / __/ /__/ / / / / / / /_/ / / /_/ / /_/ / / __(__ )
# /_/ \___/\___/_/ /_/_/ /_/\____/_/\____/\__, /_/\___/____/
# /____/
#Libraries needed for the program
import pyttsx3# text to speech library
import speech_recognition as sr # Speech recognition library
import datetime
import wikipedia
import webbrowser
import os
import datetime
import subprocess
#from ecapture import ecapture as ec
import wolframalpha
import json
import requests
import time
import random
print("||\\ //\\ //||")
print("|| \\ // \\ // ||")
print("|| \\ // \\ // ||")
print("|| \\ // \\ // ||")
print("|| \\ // \\ // ||")
print("|| \\// \\// ||")
print("|| //\\ //\\ ||")
print("|| // \\ // \\ ||")
print("|| // \\ // \\ ||")
print("|| // \\ // \\ ||")
print("|| // \\ // \\ ||")
print("||// \\// \\||")
#What are the things while taking Query from user
def takeCommand():
r = sr.Recognizer()
with sr.Microphone() as source:
print('Listening...')
r.pause_threshold = 0.7
audio = r.listen(source)
try:
print("Recognizing...")
Query = r.recognize_google(audio,language='en-in')
print("You said=", Query)
except Exception as e:
print(e)
speak("Sorry, I didn't understand. Can you rephrase it??")
return "None"
return Query
#Voice Property of the program
def speak(audio):
engine = pyttsx3.init()
voices = engine.getProperty('voices')
engine.setProperty('voice', voices[1].id)
print('Bagley:' + audio)
engine.say(audio)
engine.runAndWait()
def tellDay():
day = datetime.datetime.today().weekday() + 1
Day_dict = {1: 'Monday', 2: 'Tuesday',
3: 'Wednesday', 4: 'Thursday', 5: 'Friday',
6: 'Saturday',
7: 'Sunday'}
if day in Day_dict.keys():
day_of_the_week = Day_dict[day]
print(day_of_the_week)
speak("The day is " + day_of_the_week)
def tellTime():
time = str(datetime.datetime.now())
print(time)
hour = time[11:13]
min = time[14:16]
speak("The time is" + hour + "Hours and" + min + "Minutes")
#When Activated the program things to start with
def Hello():
currentH = int(datetime.datetime.now().hour)
if currentH >= 0 and currentH < 12:
speak('Good Morning!')
if currentH >= 12 and currentH < 18:
speak('Good Afternoon!')
if currentH >= 18 and currentH != 0:
speak('Good Evening!')
speak("How can i help you today?")
def Take_query():
Hello()
while(True):
query = takeCommand().lower()
# Websites opening commands
if "open youtube" in query:
speak("Opening Youtube")
webbrowser.open("www.youtube.com")
continue
elif "open google" in query:
speak("Opening Google")
webbrowser.open("www.google.com")
continue
elif "open classroom" in query:
speak("Opening Google Classroom")
webbrowser.open("https://classroom.google.com")
continue
elif "open google meet" in query:
speak("Opening Google Meet")
webbrowser.open("https://meet.google.com")
continue
elif "open speedtest" in query:
speak("Opening speedtest")
webbrowser.open("https://www.speedtest.net/")
continue
elif "open gmail" in query:
speak("Opening Google Mail")
webbrowser.open("https://mail.google.com/mail/u/0/#inbox")
continue
elif "open netflix" in query:
speak("Opening Netflix")
webbrowser.open("https://netflix.com")
continue
elif "open prime video" in query:
speak("Opening Prime Video")
webbrowser.open("https://www.primevideo.com")
continue
elif "open studio" in query:
speak("Opening Youtube Studio")
webbrowser.open("your youtube channel link here")
continue
elif "open drive" in query:
speak("Opening Google Drive ")
webbrowser.open("https://drive.google.com")
continue
elif "open github" in query:
speak("Opening Github")
webbrowser.open("https://github.com")
continue
#Local application opening commands
# In order to open more applications through the program you need to specify it's path in the code. eg:
# elif "your command" in query:
# speak("What to say after listening the user")
# os.system("application name if downloaded from microsoft store")
# subprocess.Popen("Path of the application")
# continue
#elif "open spotify" in query:
#speak("Opening Spotify")
#subprocess.Popen("C:\Users\hrith\AppData\Roaming\Spotify\Spotify.exe")
#os.system("Spotify")
#continue
elif "open virtualbox" in query:
speak("Opening Virtual Box")
subprocess.Popen("C:\Program Files\Oracle\VirtualBox\VirtualBox.exe")
#os. system("Oracle VM VirtualBox")
continue
elif "open anydesk" in query:
speak("Opening Anydesk")
subprocess.Popen("C:\Program Files (x86)\AnyDesk\AnyDesk.exe")
#os.system('C:\Program Files (x86)\AnyDesk\AnyDesk.exe')
continue
elif "illustrator" in query:
speak("Opening Adobe Lightroom")
subprocess.Popen("C:\Program Files\Adobe\Adobe Illustrator 2021\Support Files\Contents\Windows\Illustrator.exe")
continue
elif "open photoshop" in query:
speak("Opeing Adobe Photoshop")
subprocess.Popen("C:\Program Files\Adobe\Adobe Photoshop CC 2019\Photoshop.exe")
continue
elif "open premiere pro" in query:
speak("Opening Adobe Premiere Pro")
subprocess.Popen("C:\Program Files\Adobe\Adobe Premiere Pro 2021\Adobe Premiere Pro.exe")
continue
elif "open epic games" in query:
speak("Opening Epic Games Launcher")
subprocess.Popen("C:\Program Files (x86)\Epic Games\Launcher\Portal\Binaries\Win32\EpicGamesLauncher.exe")
#os. system("C:\ProgramData\Microsoft\Windows\Start Menu\Programs\Epic Games Launcher.lnk")
continue
elif "open pycharm" in query:
speak("Opening PYCharm")
subprocess.Popen('C:\\Program Files\\JetBrains\\PyCharm Community Edition 2021.1.1\\bin\\pycharm64.exe')
# os. system("C:\Program Files\JetBrains\PyCharm Community Edition 2021.1.1\bin\pycharm64.exe")
continue
elif "open remote play" in query:
speak("Opening PS Remote Play")
subprocess.Popen('C:\Program Files (x86)\Sony\PS Remote Play\RemotePlay.exe')
# os. system("C:\Program Files (x86)\Sony\PS Remote Play\RemotePlay.exe")
continue
#Custom Commands
elif "open hrithvik's github page" in query:
speak("Opening Hrithvik's Github Page")
webbrowser.open("https://github.com/Retr0680")
continue
# some questions asking thingy
elif 'ask' in query:
speak('I can answer to computational and geographical questions and what question do you want to ask now')
question=takeCommand()
app_id="PH4QK2-Q5VX246A2U"
client = wolframalpha.Client('R2K75H-7ELALHR35X')
res = client.query(question)
answer = next(res.results).text
speak(answer)
continue
# Weather!!
elif "weather" in query:
api_key="ec48bfeed1780fdd1d4385b44377cd94"
base_url="https://api.openweathermap.org/data/2.5/weather?"
speak("what is the city name")
city_name=takeCommand()
complete_url=base_url+"appid="+api_key+"&q="+city_name
response = requests.get(complete_url)
x=response.json()
if x["cod"]!="404":
y=x["main"]
current_temperature = y["temp"]
current_humidiy = y["humidity"]
z = x["weather"]
weather_description = z[0]["description"]
speak(" Temperature in kelvin unit is " +
str(current_temperature) +
"\n humidity in percentage is " +
str(current_humidiy) +
"\n description is " +
str(weather_description))
# webbrowser search command
elif "search" in query:
speak("Searching...")
query = query.replace("search", "")
webbrowser.open(query)
continue
#Only Reply Commands
elif "who are you" in query:
speak("I am Bagley. Your Personalized Digital Assistant.")
elif "what is the day" in query:
tellDay()
continue
elif "what is the time" in query:
tellTime()
continue
elif "how are you" in query or "what's up" in query or "what are you doing" in query:
stMsgs = ['Just doing my thing!', 'I am fine!', 'I am nice and full of energy']
speak(random.choice(stMsgs))
continue
elif "nothing" in query:
speak("Oh, Ok")
exit()
elif "bye" in query:
speak("Bye. see you later")
exit()
elif "thank you" in query:
speak("My pleasure!")
exit()
elif "thanks" in query:
speak("your Welcome")
exit()
elif "exit" in query:
exit()
elif "stop" in query:
speak("ok")
speak("See you later!")
exit()
elif "thanks bags" in query:
speak("Your Welcome!")
speak("by the way i'll be here if you need me. ")
exit()
elif "wikipedia" in query:
speak("Checking the wikipedia ")
query = query.replace("wikipedia"," ")
result = wikipedia.summary(query, sentences=20)
speak(result)
elif "introduce yourself" in query:
speak("I am Bagley. Your Personalized Assistant")
# shutdown the system!
elif "system off" in query:
speak('Turning the system off!')
os.system("shutdown /s /t 5")
continue
# Log out command
elif "log off" in query or "sign out" in query:
speak("Ok , your pc will log off in 10 sec make sure you exit from all applications")
subprocess.call(["shutdown", "/l"])
exit()
if __name__ == '__main__':
Take_query()