-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathmain.py
64 lines (59 loc) · 1.85 KB
/
main.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
import smtplib
import speech_recognition as sr
import pyttsx3
from email.message import EmailMessage
listener = sr.Recognizer()
engine = pyttsx3.init()
def talk(text):
engine.say(text)
engine.runAndWait()
def get_message_info():
try:
with sr.Microphone() as source:
print('I am Listening.......')
voice = listener.record(source, duration=20)
info = listener.recognize_google(voice,language="en-IN")
print(info)
return info.lower()
except:
pass
def get_info():
try:
with sr.Microphone() as source:
print('I am Listening.......')
voice = listener.record(source, duration=5)
info = listener.recognize_google(voice,language="en-IN")
print(info)
return info.lower()
except:
pass
def send_email(receiver,subject,message):
server = smtplib.SMTP('SMTP.gmail.com', 587)
server.starttls()
server.login('[email protected]','#Yadav145')
email = EmailMessage()
email['From'] = '[email protected]'
email['To'] = receiver
email['Subject'] = subject
email.set_content(message)
server.send_message(email)
email_list = {
'sunny' : '[email protected]',
'subhash' : '[email protected]'
}
def get_email_info():
talk('To Whom you want to send email?')
name = get_info()
receiver = email_list[name]
print(receiver)
talk('What is the subject of your email?')
subject = get_info()
talk('What is the message of your email?')
message = get_message_info()
send_email(receiver,subject,message)
talk('Your email has been sent')
talk('Do you want to send more email?')
send_more = get_info()
if 'yes' in send_more:
get_email_info()
get_email_info()