-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathn1.py
129 lines (126 loc) · 4.33 KB
/
n1.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
import os
while True:
print("--- Enter your choice below, enter z to exit")
print("Enter your requirement : ",end=" ")
text=input()
text=text.lower()
if 'z' in text:
print("Program terminated")
break
if ('run' in text) or ('execute' in text) or ('launch' in text) or ('start' in text) or ('play' in text) or ('open' in text):
if 'firefox' in text or 'google' in text:
os.system("firefox www.google.com")
print("Action completed successfuly")
print("Do you wish to continue? [Y/N] : ",end=" ")
ip=input()
ip=ip.lower()
if 'y' in ip:
continue
else:
print("--- Thank you! ---")
break
elif 'chrome' in text or 'google' in text:
os.system("chrome www.google.com")
print("Action completed successfuly")
print("Do you wish to continue? [Y/N] : ",end=" ")
ip=input()
ip=ip.lower()
if 'y' in ip:
continue
else:
print("--- Thank you! ---")
break
elif 'notepad' in text:
os.system("notepad")
print("Action completed successfuly")
print("Do you wish to continue? [Y/N] : ",end=" ")
ip=input()
ip=ip.lower()
if 'y' in ip:
continue
else:
print("--- Thank you! ---")
break
elif 'sublime' in text or 'sublime text' in text:
os.system("subl")
print("Action completed successfuly")
print("Do you wish to continue? [Y/N] : ",end=" ")
ip=input()
ip=ip.lower()
if 'y' in ip:
continue
else:
print("--- Thank you! ---")
break
elif 'wireshark' in text or 'wire shark' in text:
os.system("wireshark")
print("Action completed successfuly")
print("Do you wish to continue? [Y/N] : ",end=" ")
ip=input()
ip=ip.lower()
if 'y' in ip:
continue
else:
print("--- Thank you! ---")
break
elif 'text editor' in text or 'text' in text:
os.system("gedit")
print("Action completed successfuly")
print("Do you wish to continue? [Y/N] : ",end=" ")
ip=input()
ip=ip.lower()
if 'y' in ip:
continue
else:
print("--- Thank you! ---")
break
elif 'music box' in text or 'music' in text or 'rhythm box' in text:
os.system("rhythmbox")
print("Action completed successfuly")
print("Do you wish to continue? [Y/N] : ",end=" ")
ip=input()
ip=ip.lower()
if 'y' in ip:
continue
else:
print("--- Thank you! ---")
break
elif 'cheese' in text or 'camera' in text or 'click' in text:
os.system("cheese")
print("Action completed successfuly")
print("Do you wish to continue? [Y/N] : ",end=" ")
ip=input()
ip=ip.lower()
if 'y' in ip:
continue
else:
print("--- Thank you! ---")
break
elif 'document editor' in text or 'libre office' in text:
os.system("libreoffice")
print("Action completed successfuly")
print("Do you wish to continue? [Y/N] : ",end=" ")
ip=input()
ip=ip.lower()
if 'y' in ip:
continue
else:
print("--- Thank you! ---")
break
elif 'anaconda' in text:
os.system("anaconda-navigator")
print("Action completed successfuly")
print("Do you wish to continue? [Y/N] : ",end=" ")
ip=input()
ip=ip.lower()
if 'y' in ip:
continue
else:
print("--- Thank you! ---")
break
else:
print("!!! required application is not in computer !!!")
continue
else:
print("!!! invalid requirement !!!")
continue