forked from hacky1997/voice-based-email-for-blind
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathvoice_based_email_for_blind.py
175 lines (150 loc) · 6.22 KB
/
voice_based_email_for_blind.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
import speech_recognition as sr
import smtplib
# import pyaudio
# import platform
# import sys
from bs4 import BeautifulSoup
import email
import imaplib
from gtts import gTTS
import pyglet
import os, time
#pyglet.lib.load_library('avbin')
#pyglet.have_avbin=True
#project: :. Project: Voice based Email for blind :.
# Author: Sayak Naskar
#fetch project name
tts = gTTS(text="Project: Voice based Email for blind", lang='en')
ttsname=("name.mp3") #Example: path -> C:\Users\sayak\Desktop> just change with your desktop directory. Don't use my directory.
tts.save(ttsname)
music = pyglet.media.load(ttsname, streaming = False)
music.play()
time.sleep(music.duration)
os.remove(ttsname)
#login from os
login = os.getlogin
print ("You are logging from : "+login())
#choices
print ("1. composed a mail.")
tts = gTTS(text="option 1. composed a mail.", lang='en')
ttsname=("hello.mp3") #Example: path -> C:\Users\sayak\Desktop> just change with your desktop directory. Don't use my directory.
tts.save(ttsname)
music = pyglet.media.load(ttsname, streaming = False)
music.play()
time.sleep(music.duration)
os.remove(ttsname)
print ("2. Check your inbox")
tts = gTTS(text="option 2. Check your inbox", lang='en')
ttsname=("second.mp3")
tts.save(ttsname)
music = pyglet.media.load(ttsname, streaming = False)
music.play()
time.sleep(music.duration)
os.remove(ttsname)
#this is for input choices
tts = gTTS(text="Your choice ", lang='en')
ttsname=("hello.mp3") #Example: path -> C:\Users\sayak\Desktop> just change with your desktop directory. Don't use my directory.
tts.save(ttsname)
music = pyglet.media.load(ttsname, streaming = False)
music.play()
time.sleep(music.duration)
os.remove(ttsname)
#voice recognition part
r = sr.Recognizer()
with sr.Microphone() as source:
print ("Your choice:")
audio=r.listen(source)
print ("ok done!!")
try:
text=r.recognize_google(audio)
print ("You said : "+text)
except sr.UnknownValueError:
print("Google Speech Recognition could not understand audio.")
except sr.RequestError as e:
print("Could not request results from Google Speech Recognition service; {0}".format(e))
#choices details
if text == '1' or text == 'One' or text == 'one':
r = sr.Recognizer() #recognize
with sr.Microphone() as source:
print ("Your message :")
audio=r.listen(source)
print ("ok done!!")
try:
text1=r.recognize_google(audio)
print ("You said : "+text1)
msg = text1
except sr.UnknownValueError:
print("Google Speech Recognition could not understand audio.")
except sr.RequestError as e:
print("Could not request results from Google Speech Recognition service; {0}".format(e))
mail = smtplib.SMTP('smtp.gmail.com',587) #host and port area
mail.ehlo() #Hostname to send for this command defaults to the FQDN of the local host.
mail.starttls() #security connection
mail.login('emailID','pswrd') #login part
mail.sendmail('emailID','victimID',msg) #send part
print ("Congrates! Your mail has send. ")
tts = gTTS(text="Congrates! Your mail has send. ", lang='en')
ttsname=("send.mp3") #Example: path -> C:\Users\sayak\Desktop> just change with your desktop directory. Don't use my directory.
tts.save(ttsname)
music = pyglet.media.load(ttsname, streaming = False)
music.play()
time.sleep(music.duration)
os.remove(ttsname)
mail.close()
if text == '2' or text == 'tu' or text == 'two' or text == 'Tu' or text == 'to' or text == 'To' :
mail = imaplib.IMAP4_SSL('imap.gmail.com',993) #this is host and port area.... ssl security
unm = ('your mail or victim mail') #username
psw = ('pswrd') #password
mail.login(unm,psw) #login
stat, total = mail.select('Inbox') #total number of mails in inbox
print ("Number of mails in your inbox :"+str(total))
tts = gTTS(text="Total mails are :"+str(total), lang='en') #voice out
ttsname=("total.mp3") #Example: path -> C:\Users\sayak\Desktop> just change with your desktop directory. Don't use my directory.
tts.save(ttsname)
music = pyglet.media.load(ttsname, streaming = False)
music.play()
time.sleep(music.duration)
os.remove(ttsname)
#unseen mails
unseen = mail.search(None, 'UnSeen') # unseen count
print ("Number of UnSeen mails :"+str(unseen))
tts = gTTS(text="Your Unseen mail :"+str(unseen), lang='en')
ttsname=("unseen.mp3") #Example: path -> C:\Users\sayak\Desktop> just change with your desktop directory. Don't use my directory.
tts.save(ttsname)
music = pyglet.media.load(ttsname, streaming = False)
music.play()
time.sleep(music.duration)
os.remove(ttsname)
#search mails
result, data = mail.uid('search',None, "ALL")
inbox_item_list = data[0].split()
new = inbox_item_list[-1]
old = inbox_item_list[0]
result2, email_data = mail.uid('fetch', new, '(RFC822)') #fetch
raw_email = email_data[0][1].decode("utf-8") #decode
email_message = email.message_from_string(raw_email)
print ("From: "+email_message['From'])
print ("Subject: "+str(email_message['Subject']))
tts = gTTS(text="From: "+email_message['From']+" And Your subject: "+str(email_message['Subject']), lang='en')
ttsname=("mail.mp3") #Example: path -> C:\Users\sayak\Desktop> just change with your desktop directory. Don't use my directory.
tts.save(ttsname)
music = pyglet.media.load(ttsname, streaming = False)
music.play()
time.sleep(music.duration)
os.remove(ttsname)
#Body part of mails
stat, total1 = mail.select('Inbox')
stat, data1 = mail.fetch(total1[0], "(UID BODY[TEXT])")
msg = data1[0][1]
soup = BeautifulSoup(msg, "html.parser")
txt = soup.get_text()
print ("Body :"+txt)
tts = gTTS(text="Body: "+txt, lang='en')
ttsname=("body.mp3") #Example: path -> C:\Users\sayak\Desktop> just change with your desktop directory. Don't use my directory.
tts.save(ttsname)
music = pyglet.media.load(ttsname, streaming = False)
music.play()
time.sleep(music.duration)
os.remove(ttsname)
mail.close()
mail.logout()