1
1
#########
2
2
3
- __author__ = ' Mohammed Shokr <[email protected] >'
4
- __version__ = ' v 0.1'
3
+ __author__ = " Mohammed Shokr <[email protected] >"
4
+ __version__ = " v 0.1"
5
5
6
6
"""
7
7
JARVIS:
11
11
# import modules
12
12
import datetime # datetime module supplies classes for manipulating dates and times
13
13
import subprocess # subprocess module allows you to spawn new processes
14
+
14
15
# master
15
16
import pyjokes
16
17
import requests
17
18
import json
18
19
from PIL import Image , ImageGrab
19
20
from gtts import gTTS
21
+
20
22
# for 30 seconds clip "Jarvis, clip that!" and discord ctrl+k quick-move (might not come to fruition)
21
23
from pynput import keyboard
22
24
from pynput .keyboard import Key , Listener
23
25
from pynput .mouse import Button , Controller
26
+
24
27
# =======
25
28
from playsound import * # for sound output
29
+
26
30
# master
27
- import \
28
- speech_recognition as sr # speech_recognition Library for performing speech recognition with support for Google Speech Recognition, etc..
31
+ import speech_recognition as sr # speech_recognition Library for performing speech recognition with support for Google Speech Recognition, etc..
29
32
30
33
# pip install pyttsx3
31
34
# need to run only once to install the library
37
40
38
41
# initialisation
39
42
engine = pyttsx3 .init ()
40
- voices = engine .getProperty ('voices' )
41
- engine .setProperty ('voice' , voices [0 ].id )
42
- engine .setProperty ('rate' , 150 )
43
- exit_jarvis = False
43
+ voices = engine .getProperty ("voices" )
44
+ engine .setProperty ("voice" , voices [0 ].id )
45
+ engine .setProperty ("rate" , 150 )
46
+ exit_jarvis = False
47
+
48
+
44
49
def speak (audio ):
45
50
engine .say (audio )
46
51
engine .runAndWait ()
47
52
53
+
48
54
def speak_news ():
49
- url = ' http://newsapi.org/v2/top-headlines?sources=the-times-of-india&apiKey=yourapikey'
55
+ url = " http://newsapi.org/v2/top-headlines?sources=the-times-of-india&apiKey=yourapikey"
50
56
news = requests .get (url ).text
51
57
news_dict = json .loads (news )
52
- arts = news_dict [' articles' ]
53
- speak (' Source: The Times Of India' )
54
- speak (' Todays Headlines are..' )
58
+ arts = news_dict [" articles" ]
59
+ speak (" Source: The Times Of India" )
60
+ speak (" Todays Headlines are.." )
55
61
for index , articles in enumerate (arts ):
56
- speak (articles [' title' ])
62
+ speak (articles [" title" ])
57
63
if index == len (arts ) - 1 :
58
64
break
59
- speak (' Moving on the next news headline..' )
60
- speak (' These were the top headlines, Have a nice day Sir!!..' )
65
+ speak (" Moving on the next news headline.." )
66
+ speak (" These were the top headlines, Have a nice day Sir!!.." )
61
67
62
68
63
69
def sendEmail (to , content ):
64
- server = smtplib .SMTP (' smtp.gmail.com' , 587 )
70
+ server = smtplib .SMTP (" smtp.gmail.com" , 587 )
65
71
server .ehlo ()
66
72
server .starttls ()
67
- server .
login (
' [email protected] ' , ' yourr-password-here' )
68
- server .
sendmail (
' [email protected] ' ,
to ,
content )
73
+ server .
login (
" [email protected] " , " yourr-password-here" )
74
+ server .
sendmail (
" [email protected] " ,
to ,
content )
69
75
server .close ()
70
76
77
+
71
78
def wishme ():
72
- #This function wishes user
73
- hour = int (datetime .datetime .now ().hour )
74
- if ( hour >= 0 and hour < 12 ) :
79
+ # This function wishes user
80
+ hour = int (datetime .datetime .now ().hour )
81
+ if hour >= 0 and hour < 12 :
75
82
speak ("Good Morning!" )
76
- elif ( hour >= 12 and hour < 18 ) :
83
+ elif hour >= 12 and hour < 18 :
77
84
speak ("Good Afternoon!" )
78
85
else :
79
86
speak ("Good Evening !" )
80
87
speak ("I m Jarvis ! how can I help you sir" )
88
+
89
+
81
90
# obtain audio from the microphone
82
91
def takecommand ():
83
- #it takes user's command and returns string output
92
+ # it takes user's command and returns string output
84
93
wishme ()
85
- r = sr .Recognizer ()
94
+ r = sr .Recognizer ()
86
95
with sr .Microphone () as source :
87
96
print ("Listening..." )
88
- r .pause_threshold = 1
89
- r .dynamic_energy_threshold = 500
90
- audio = r .listen (source )
97
+ r .pause_threshold = 1
98
+ r .dynamic_energy_threshold = 500
99
+ audio = r .listen (source )
91
100
try :
92
101
print ("Recognizing..." )
93
- query = r .recognize_google (audio ,language = "en-in" )
102
+ query = r .recognize_google (audio , language = "en-in" )
94
103
print (f"User said { query } \n " )
95
104
except Exception as e :
96
105
print ("Say that again please..." )
@@ -100,9 +109,9 @@ def takecommand():
100
109
101
110
# for audio output instead of print
102
111
def voice (p ):
103
- myobj = gTTS (text = p , lang = 'en' , slow = False )
104
- myobj .save (' try.mp3' )
105
- playsound (' try.mp3' )
112
+ myobj = gTTS (text = p , lang = "en" , slow = False )
113
+ myobj .save (" try.mp3" )
114
+ playsound (" try.mp3" )
106
115
107
116
108
117
# recognize speech using Google Speech Recognition
@@ -115,15 +124,16 @@ def on_press(key):
115
124
k = key .char # single-char keys
116
125
except :
117
126
k = key .name # other keys
118
- if k in ['1' , '2' , ' left' , ' right' ]: # keys of interest
127
+ if k in ["1" , "2" , " left" , " right" ]: # keys of interest
119
128
# self.keys.append(k) # store it in global-like variable
120
- print (' Key pressed: ' + k )
129
+ print (" Key pressed: " + k )
121
130
return False # stop listener; remove this if want more keys
131
+
132
+
122
133
# Run Application with Voice Command Function
123
134
# only_jarvis
124
135
def on_release (key ):
125
- print ('{0} release' .format (
126
- key ))
136
+ print ("{0} release" .format (key ))
127
137
if key == Key .esc ():
128
138
# Stop listener
129
139
return False
@@ -177,8 +187,10 @@ def get_app(self):
177
187
178
188
# =======
179
189
"""
190
+
191
+
180
192
def get_app (Q ):
181
- current = Controller ()
193
+ current = Controller ()
182
194
# master
183
195
if Q == "time" :
184
196
print (datetime .now ())
@@ -188,29 +200,31 @@ def get_app(Q):
188
200
speak_news ()
189
201
190
202
elif Q == "open notepad" :
191
- subprocess .call ([' Notepad.exe' ])
203
+ subprocess .call ([" Notepad.exe" ])
192
204
elif Q == "open calculator" :
193
- subprocess .call ([' calc.exe' ])
205
+ subprocess .call ([" calc.exe" ])
194
206
elif Q == "open stikynot" :
195
- subprocess .call ([' StikyNot.exe' ])
207
+ subprocess .call ([" StikyNot.exe" ])
196
208
elif Q == "open shell" :
197
- subprocess .call ([' powershell.exe' ])
209
+ subprocess .call ([" powershell.exe" ])
198
210
elif Q == "open paint" :
199
- subprocess .call ([' mspaint.exe' ])
211
+ subprocess .call ([" mspaint.exe" ])
200
212
elif Q == "open cmd" :
201
- subprocess .call ([' cmd.exe' ])
213
+ subprocess .call ([" cmd.exe" ])
202
214
elif Q == "open discord" :
203
- subprocess .call ([' discord.exe' ])
215
+ subprocess .call ([" discord.exe" ])
204
216
elif Q == "open browser" :
205
- subprocess .call ([' C:\Program Files\Internet Explorer\iexplore.exe' ])
217
+ subprocess .call ([" C:\Program Files\Internet Explorer\iexplore.exe" ])
206
218
# patch-1
207
219
elif Q == "open youtube" :
208
220
webbrowser .open ("https://www.youtube.com/" ) # open youtube
209
221
elif Q == "open google" :
210
222
webbrowser .open ("https://www.google.com/" ) # open google
211
223
elif Q == "open github" :
212
224
webbrowser .open ("https://github.com/" )
213
- elif Q == "email to other" : # here you want to change and input your mail and password whenver you implement
225
+ elif (
226
+ Q == "email to other"
227
+ ): # here you want to change and input your mail and password whenver you implement
214
228
try :
215
229
speak ("What should I say?" )
216
230
r = sr .Recognizer ()
@@ -219,7 +233,7 @@ def get_app(Q):
219
233
r .pause_threshold = 1
220
234
audio = r .listen (source )
221
235
222
- content = input ("Enter content" )
236
+ content = input ("Enter content" )
223
237
sendEmail (to , content )
224
238
speak ("Email has been sent!" )
225
239
except Exception as e :
@@ -230,40 +244,34 @@ def get_app(Q):
230
244
elif Q == "Take screenshot" :
231
245
snapshot = ImageGrab .grab ()
232
246
drive_letter = "C:\\ "
233
- folder_name = r' downloaded-files'
247
+ folder_name = r" downloaded-files"
234
248
folder_time = datetime .datetime .now ().strftime ("%Y-%m-%d_%I-%M-%S_%p" )
235
- extention = ' .jpg'
249
+ extention = " .jpg"
236
250
folder_to_save_files = drive_letter + folder_name + folder_time + extention
237
251
snapshot .save (folder_to_save_files )
238
252
239
253
elif Q == "Jokes" :
240
254
speak (pyjokes .get_joke ())
241
255
242
256
elif Q == "start recording" :
243
- current .add (' Win' , ' Alt' , 'r' )
257
+ current .add (" Win" , " Alt" , "r" )
244
258
speak ("Started recording. just say stop recording to stop." )
245
259
246
260
elif Q == "stop recording" :
247
- current .add (' Win' , ' Alt' , 'r' )
261
+ current .add (" Win" , " Alt" , "r" )
248
262
speak ("Stopped recording. check your game bar folder for the video" )
249
263
250
264
elif Q == "clip that" :
251
- current .add (' Win' , ' Alt' , 'g' )
265
+ current .add (" Win" , " Alt" , "g" )
252
266
speak ("Clipped. check you game bar file for the video" )
253
267
with keyboard .Listener (on_press = on_press , on_release = on_release ) as listener :
254
268
listener .join ()
255
269
256
270
else :
257
271
exit ()
258
272
259
-
260
-
261
-
262
-
263
-
264
273
# master
265
274
266
-
267
275
apps = {
268
276
"time" : datetime .datetime .now (),
269
277
"notepad" : "Notepad.exe" ,
@@ -272,18 +280,15 @@ def get_app(Q):
272
280
"shell" : "powershell.exe" ,
273
281
"paint" : "mspaint.exe" ,
274
282
"cmd" : "cmd.exe" ,
275
- "browser" : "C:\Program Files\Internet Explorer\iexplore.exe"
283
+ "browser" : "C:\Program Files\Internet Explorer\iexplore.exe" ,
276
284
}
277
285
# master
278
286
279
287
280
-
281
-
282
-
283
288
# Call get_app(Query) Func.
284
289
285
- if __name__ == ' __main__' :
290
+ if __name__ == " __main__" :
286
291
while not exit_jarvis :
287
- Query = takecommand ().lower ()
292
+ Query = takecommand ().lower ()
288
293
get_app (Query )
289
- exit_jarvis = True
294
+ exit_jarvis = True
0 commit comments