aboutsummaryrefslogtreecommitdiffstats
path: root/Password.py
blob: f19f56992e7d1c8a136bd9f492bcb39e077dfef8 (plain) (blame)
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
import speech_recognition as sr
import pyttsx3

engine = pyttsx3.init('sapi5')
voices = engine.getProperty('voices')
engine.setProperty('voices',voices[1].id)

def Speak(audio):
    print(" ")
    print(f": {audio}")
    engine.say(audio)
    engine.runAndWait()
    print(" ")

def TakeCommand():

    r = sr.Recognizer()

    with sr.Microphone() as source:

        print(": Listening....")

        r.pause_threshold = 1

        audio = r.listen(source)


    try:

        print(": Recognizing...")

        query = r.recognize_google(audio,language='en-in')

        print(f": Your Command : {query}\n")

    except:
        return ""

    return query.lower()

def Pass(pass_inp):

       password = "shresth"

       passss  = str(password)

       if passss==str(pass_inp):

              Speak("Access Granted .")

              import Main

       else:
              Speak("Access Not Granted .")

if __name__ == "__main__" :

       Speak("This Particular File Is Password Protected .")

       Speak("Kindly Provide The Password To Access .")

       passssssss = TakeCommand()

       Pass(passssssss)