-
Notifications
You must be signed in to change notification settings - Fork 0
/
handle.py
311 lines (269 loc) · 10.4 KB
/
handle.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
import os
import playsound
import speech_recognition as sr
import time
import sys
import ctypes
import wikipedia
import datetime
import json
import re
import webbrowser
import smtplib
import requests
import urllib
import urllib.request as urllib2
from selenium import webdriver
from selenium.webdriver.common.keys import Keys
from webdriver_manager.chrome import ChromeDriverManager
from time import strftime
from gtts import gTTS
from youtube_search import YoutubeSearch
def speak(text):
print("Jira: {}".format(text))
# Google text to speak
tts = gTTS(text = text, language = language, slow = False)
tts.save('sound.mp3')
playsound.playsound('sound.mp3', False)
os.remove('sound.mp3')
def get_audio():
r = rs.Recognizer()
with sr.Microphone() as source:
print('Ý bạn là: ', end = '')
audio = r.listen(source, phrase_time_limit = 5)
try:
text = r.recognize_google(audio, language = "vi-VN")
print(text)
return text
except:
print("...")
return 0
def stop():
speak('Cảm ơn bạn đã tin tưởng sử dụng tôi. Chúc bạn ngày mới tốt lành. Hẹn gặp lại bạn sau!')
def get_text():
for i in range(3):
text = get_audio()
if text:
return text.lower()
elif i < 2:
speak("Mình không nghe rõ. Bạn nói lại được không!")
time.sleep(2)
stop()
return 0
def hello(name):
day_time = int(strftime('%H'))
if day_time < 12:
speak("Chào buổi sáng bạn {}. Chúc bạn một ngày tốt lành.".format(name))
elif 12 <= day_time < 18:
speak("Chào buổi chiều bạn {}. Bạn đã dự định gì cho chiều nay chưa.".format(name))
else:
speak("Chào buổi tối bạn {}. Bạn đã ăn tối chưa nhỉ.".format(name))
def get_time(text):
now = datetime.datetime.now()
if "giờ" in text:
speak('Bây giờ là %d giờ %d phút' % (now.hour, now.minute))
elif "ngày" in text:
speak("Hôm nay là ngày %d tháng %d năm %d" %
(now.day, now.month, now.year))
else:
speak("Mình chưa hiểu ý của bạn. Bạn nói lại được không?")
def open_application(text):
if "google" in text:
speak("Mở Google Chrome")
os.startfile('C:\Program Files (x86)\Google\Chrome\Application\chrome.exe')
elif "word" in text:
speak("Mở Microsoft Word")
os.startfile('C:\Program Files\Microsoft Office\\root\Office16\\WINWORD.EXE')
elif "excel" in text:
speak("Mở Microsoft Excel")
os.startfile('C:\Program Files\Microsoft Office\\root\Office16\EXCEL.EXE')
else:
speak("Ứng dụng chưa được cài đặt. Bạn hãy thử lại!")
def open_website(text):
reg_ex = re.search('mở (.+)', text)
if reg_ex:
domain = reg_ex.group(1)
url = 'https://www.' + domain
webbrowser.open(url)
speak("Trang web bạn yêu cầu đã được mở.")
return True
else:
return False
def open_google_and_search(text):
search_for = text.split("kiếm", 1)[1]
speak('Okay!')
driver = webdriver.Chrome(path)
driver.get("http://www.google.com")
que = driver.find_element_by_xpath("//input[@name='q']")
que.send_keys(str(search_for))
que.send_keys(Keys.RETURN)
def send_email(text):
speak('Bạn gửi email cho ai nhỉ')
recipient = get_text()
if 'hậu' in recipient:
speak('Nội dung bạn muốn gửi là gì')
content = get_text()
mail = smtplib.SMTP('smtp.gmail.com', 587)
mail.ehlo()
mail.starttls()
mail.login('duongbacdong99@gmail.com', 'Faker1412')
mail.sendmail('duongbacdong99@gmail.com',
'buitrunghau1312@gmail.com', content.encode('utf-8'))
mail.close()
speak('Email của bạn vùa được gửi. Bạn check lại email nhé.')
elif 'giang' in recipient:
speak('Nội dung bạn muốn gửi là gì')
content = get_text()
mail = smtplib.SMTP('smtp.gmail.com', 587)
mail.ehlo()
mail.starttls()
mail.login('duongbacdong99@gmail.com', 'Faker1412')
mail.sendmail('duongbacdong99@gmail.com',
'dotruonggiang290@gmail.com', content.encode('utf-8'))
mail.close()
speak('Email của bạn vùa được gửi. Bạn check lại email nhé.'):
else:
speak('Mình không hiểu bạn muốn gửi email cho ai. Bạn nói lại được không?')
def current_weather():
speak("Bạn muốn xem thời tiết ở đâu?")
ow_url = "http://api.openweathermap.org/data/2.5/weather?"
city = get_text()
if not city:
pass
api_key = "fe8d8c65cf345889139d8e545f57819a"
call_url = ow_url + "appid=" + api_key + "&q=" + city + "&units=metric"
response = requests.get(call_url)
data = response.json()
if data["cod"] != "404":
city_res = data["main"]
current_temperature = city_res["temp"]
current_pressure = city_res["pressure"]
current_humidity = city_res["humidity"]
suntime = data["sys"]
sunrise = datetime.datetime.fromtimestamp(suntime["sunrise"])
sunset = datetime.datetime.fromtimestamp(suntime["sunset"])
wthr = data["weather"]
weather_description = wthr[0]["description"]
now = datetime.datetime.now()
content = """
Hôm nay là ngày {day} tháng {month} năm {year}
Mặt trời mọc vào {hourrise} giờ {minrise} phút
Mặt trời lặn vào {hourset} giờ {minset} phút
Nhiệt độ trung bình là {temp} độ C
Áp suất không khí là {pressure} héc tơ Pascal
Độ ẩm là {humidity}%
Trời hôm nay quang mây. Dự báo mưa rải rác ở một số nơi.""".format(day = now.day,month = now.month, year= now.year, hourrise = sunrise.hour, minrise = sunrise.minute,
hourset = sunset.hour, minset = sunset.minute,
temp = current_temperature, pressure = current_pressure, humidity = current_humidity)
speak(content)
time.sleep(20)
else:
speak("Không tìm thấy địa chỉ của bạn")
def play_song():
speak('Xin mời bạn chọn tên bài hát')
mysong = get_text()
while True:
result = YoutubeSearch(mysong, max_results=10).to_dict()
if result:
break
url = 'https://www.youtube.com' + result[0]['channel_link']
webbrowser.open(url)
speak("Bài hát bạn yêu cầu đã được mở.")
def change_wallpaper():
api_key = 'RF3LyUUIyogjCpQwlf-zjzCf1JdvRwb--SLV6iCzOxw'
url = 'https://api.unsplash.com/photos/random?client_id=' + \
api_key # pic from unspalsh.com
f = urllib2.urlopen(url)
json_string = f.read()
f.close()
parsed_json = json.loads(json_string)
photo = parsed_json['urls']['full']
# Location where we download the image to.
urllib2.urlretrieve(photo, "C:/Users/Night Fury/Downloads/a.png")
image=os.path.join("C:/Users/Night Fury/Downloads/a.png")
ctypes.windll.user32.SystemParametersInfoW(20,0,image,3)
speak('Hình nền máy tính vừa được thay đổi')
def read_news():
speak("Bạn muốn đọc báo về gì")
queue = get_text()
params = {
'apiKey': '30d02d187f7140faacf9ccd27a1441ad',
"q": queue,
}
api_result = requests.get('http://newsapi.org/v2/top-headlines?', params)
api_response = api_result.json()
print("Tin tức")
for number, result in enumerate(api_response['articles'], start=1):
print(f"""Tin {number}:\nTiêu đề: {result['title']}\nTrích dẫn: {result['description']}\nLink: {result['url']}
""")
if number <= 3:
webbrowser.open(result['url'])
def tell_me_about():
try:
speak("Bạn muốn nghe về gì ạ")
text = get_text()
contents = wikipedia.summary(text).split('\n')
speak(contents[0])
time.sleep(10)
for content in contents[1:]:
speak("Bạn muốn nghe thêm không")
ans = get_text()
if "có" not in ans:
break
speak(content)
time.sleep(10)
speak('Cảm ơn bạn đã lắng nghe!!!')
except:
speak("Mình không định nghĩa được thuật ngữ của bạn. Xin mời bạn nói lại")
def help_me():
speak("""Mình có thể giúp bạn thực hiện các câu lệnh sau đây:
1. Chào hỏi
2. Hiển thị giờ
3. Mở website, application
4. Tìm kiếm trên Google
5. Gửi email
6. Dự báo thời tiết
7. Mở video nhạc
8. Thay đổi hình nền máy tính
9. Đọc báo hôm nay
10. Kể bạn biết về thế giới """)
def assistant():
speak("Xin chào, bạn tên là gì nhỉ?")
name = get_text()
if name:
speak("Chào bạn {}".format(name))
speak("Bạn cần Jira mình giúp gì ạ?")
while True:
text = get_text()
if not text:
break
elif "dừng" in text or "tạm biệt" in text or "chào robot" in text or "ngủ thôi" in text:
stop()
break
elif "có thể làm gì" in text:
help_me()
elif "chào trợ lý ảo" in text:
hello(name)
elif "hiện tại" in text:
get_time(text)
elif "mở" in text:
if 'mở google và tìm kiếm' in text:
open_google_and_search(text)
elif "." in text:
open_website(text)
else:
open_application(text)
elif "email" in text or "mail" in text or "gmail" in text:
send_email(text)
elif "thời tiết" in text:
current_weather()
elif "chơi nhạc" in text:
play_song()
elif "hình nền" in text:
change_wallpaper()
elif "đọc báo" in text:
read_news()
elif "định nghĩa" in text:
tell_me_about()
else:
speak("Bạn cần mình giúp gì ạ?")