Skip to content

Commit 5ff1c57

Browse files
committed
Rename numpy.py file to num-py.py
1 parent 6f17fd3 commit 5ff1c57

9 files changed

+1284
-1139
lines changed

JARVIS/JARVIS.py

+69-64
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
#########
22

3-
__author__ = 'Mohammed Shokr <[email protected]>'
4-
__version__ = 'v 0.1'
3+
__author__ = "Mohammed Shokr <[email protected]>"
4+
__version__ = "v 0.1"
55

66
"""
77
JARVIS:
@@ -11,21 +11,24 @@
1111
# import modules
1212
import datetime # datetime module supplies classes for manipulating dates and times
1313
import subprocess # subprocess module allows you to spawn new processes
14+
1415
# master
1516
import pyjokes
1617
import requests
1718
import json
1819
from PIL import Image, ImageGrab
1920
from gtts import gTTS
21+
2022
# for 30 seconds clip "Jarvis, clip that!" and discord ctrl+k quick-move (might not come to fruition)
2123
from pynput import keyboard
2224
from pynput.keyboard import Key, Listener
2325
from pynput.mouse import Button, Controller
26+
2427
# =======
2528
from playsound import * # for sound output
29+
2630
# 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..
2932

3033
# pip install pyttsx3
3134
# need to run only once to install the library
@@ -37,60 +40,66 @@
3740

3841
# initialisation
3942
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+
4449
def speak(audio):
4550
engine.say(audio)
4651
engine.runAndWait()
4752

53+
4854
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"
5056
news = requests.get(url).text
5157
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..")
5561
for index, articles in enumerate(arts):
56-
speak(articles['title'])
62+
speak(articles["title"])
5763
if index == len(arts) - 1:
5864
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!!..")
6167

6268

6369
def sendEmail(to, content):
64-
server = smtplib.SMTP('smtp.gmail.com', 587)
70+
server = smtplib.SMTP("smtp.gmail.com", 587)
6571
server.ehlo()
6672
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)
6975
server.close()
7076

77+
7178
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:
7582
speak("Good Morning!")
76-
elif(hour>=12 and hour<18):
83+
elif hour >= 12 and hour < 18:
7784
speak("Good Afternoon!")
7885
else:
7986
speak("Good Evening !")
8087
speak("I m Jarvis ! how can I help you sir")
88+
89+
8190
# obtain audio from the microphone
8291
def takecommand():
83-
#it takes user's command and returns string output
92+
# it takes user's command and returns string output
8493
wishme()
85-
r=sr.Recognizer()
94+
r = sr.Recognizer()
8695
with sr.Microphone() as source:
8796
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)
91100
try:
92101
print("Recognizing...")
93-
query=r.recognize_google(audio,language="en-in")
102+
query = r.recognize_google(audio, language="en-in")
94103
print(f"User said {query}\n")
95104
except Exception as e:
96105
print("Say that again please...")
@@ -100,9 +109,9 @@ def takecommand():
100109

101110
# for audio output instead of print
102111
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")
106115

107116

108117
# recognize speech using Google Speech Recognition
@@ -115,15 +124,16 @@ def on_press(key):
115124
k = key.char # single-char keys
116125
except:
117126
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
119128
# self.keys.append(k) # store it in global-like variable
120-
print('Key pressed: ' + k)
129+
print("Key pressed: " + k)
121130
return False # stop listener; remove this if want more keys
131+
132+
122133
# Run Application with Voice Command Function
123134
# only_jarvis
124135
def on_release(key):
125-
print('{0} release'.format(
126-
key))
136+
print("{0} release".format(key))
127137
if key == Key.esc():
128138
# Stop listener
129139
return False
@@ -177,8 +187,10 @@ def get_app(self):
177187
178188
# =======
179189
"""
190+
191+
180192
def get_app(Q):
181-
current=Controller()
193+
current = Controller()
182194
# master
183195
if Q == "time":
184196
print(datetime.now())
@@ -188,29 +200,31 @@ def get_app(Q):
188200
speak_news()
189201

190202
elif Q == "open notepad":
191-
subprocess.call(['Notepad.exe'])
203+
subprocess.call(["Notepad.exe"])
192204
elif Q == "open calculator":
193-
subprocess.call(['calc.exe'])
205+
subprocess.call(["calc.exe"])
194206
elif Q == "open stikynot":
195-
subprocess.call(['StikyNot.exe'])
207+
subprocess.call(["StikyNot.exe"])
196208
elif Q == "open shell":
197-
subprocess.call(['powershell.exe'])
209+
subprocess.call(["powershell.exe"])
198210
elif Q == "open paint":
199-
subprocess.call(['mspaint.exe'])
211+
subprocess.call(["mspaint.exe"])
200212
elif Q == "open cmd":
201-
subprocess.call(['cmd.exe'])
213+
subprocess.call(["cmd.exe"])
202214
elif Q == "open discord":
203-
subprocess.call(['discord.exe'])
215+
subprocess.call(["discord.exe"])
204216
elif Q == "open browser":
205-
subprocess.call(['C:\Program Files\Internet Explorer\iexplore.exe'])
217+
subprocess.call(["C:\Program Files\Internet Explorer\iexplore.exe"])
206218
# patch-1
207219
elif Q == "open youtube":
208220
webbrowser.open("https://www.youtube.com/") # open youtube
209221
elif Q == "open google":
210222
webbrowser.open("https://www.google.com/") # open google
211223
elif Q == "open github":
212224
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
214228
try:
215229
speak("What should I say?")
216230
r = sr.Recognizer()
@@ -219,7 +233,7 @@ def get_app(Q):
219233
r.pause_threshold = 1
220234
audio = r.listen(source)
221235
222-
content=input("Enter content")
236+
content = input("Enter content")
223237
sendEmail(to, content)
224238
speak("Email has been sent!")
225239
except Exception as e:
@@ -230,40 +244,34 @@ def get_app(Q):
230244
elif Q == "Take screenshot":
231245
snapshot = ImageGrab.grab()
232246
drive_letter = "C:\\"
233-
folder_name = r'downloaded-files'
247+
folder_name = r"downloaded-files"
234248
folder_time = datetime.datetime.now().strftime("%Y-%m-%d_%I-%M-%S_%p")
235-
extention = '.jpg'
249+
extention = ".jpg"
236250
folder_to_save_files = drive_letter + folder_name + folder_time + extention
237251
snapshot.save(folder_to_save_files)
238252

239253
elif Q == "Jokes":
240254
speak(pyjokes.get_joke())
241255

242256
elif Q == "start recording":
243-
current.add('Win', 'Alt', 'r')
257+
current.add("Win", "Alt", "r")
244258
speak("Started recording. just say stop recording to stop.")
245259

246260
elif Q == "stop recording":
247-
current.add('Win', 'Alt', 'r')
261+
current.add("Win", "Alt", "r")
248262
speak("Stopped recording. check your game bar folder for the video")
249263

250264
elif Q == "clip that":
251-
current.add('Win', 'Alt', 'g')
265+
current.add("Win", "Alt", "g")
252266
speak("Clipped. check you game bar file for the video")
253267
with keyboard.Listener(on_press=on_press, on_release=on_release) as listener:
254268
listener.join()
255269

256270
else:
257271
exit()
258272

259-
260-
261-
262-
263-
264273
# master
265274

266-
267275
apps = {
268276
"time": datetime.datetime.now(),
269277
"notepad": "Notepad.exe",
@@ -272,18 +280,15 @@ def get_app(Q):
272280
"shell": "powershell.exe",
273281
"paint": "mspaint.exe",
274282
"cmd": "cmd.exe",
275-
"browser": "C:\Program Files\Internet Explorer\iexplore.exe"
283+
"browser": "C:\Program Files\Internet Explorer\iexplore.exe",
276284
}
277285
# master
278286

279287

280-
281-
282-
283288
# Call get_app(Query) Func.
284289

285-
if __name__ == '__main__':
290+
if __name__ == "__main__":
286291
while not exit_jarvis:
287-
Query=takecommand().lower()
292+
Query = takecommand().lower()
288293
get_app(Query)
289-
exit_jarvis=True
294+
exit_jarvis = True

0 commit comments

Comments
 (0)