-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathrun.py
executable file
·209 lines (107 loc) · 4.26 KB
/
run.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
#!/usr/bin/env python3.8
from account import Account
def intro() :
print("* *")
print(" * ____ _ _ _ * ")
print(" | _ \ | | | | / / ")
print(" | |_) ) ____ ___ ___ | | _____ ____ | |/ / ")
print(" | __/ / _ |/ __ / __ | | / _ \ / ___| | | : ")
print(" | | / (_| |\__ \ \__ \ - | |___ ( (_) ) | |___ | |\ \ ")
print(" |_| \_____| ___/ ___/ |_____) \_____/ \____| |_| \_\ ")
print(" * * ")
print("* Ⓒ shaviya *")
intro()
def createAccount(account, username, password) :
'''
Function that creates a new account
'''
newAccount = Account(account, username, password)
return newAccount
def saveAccount(account) :
'''
Function to save our accounts
'''
account.saveAccount()
def deleteAccount(account) :
'''
Function to delete an account
'''
account.deleteAccount()
def findAccount(account) :
'''
Function that finds an account by account and returns the account
'''
return Account.findAccountByAcc(account)
def accountExists(account) :
'''
Function that checks if an account exists with that account name and return a Boolean
'''
return Account.accountExists(account)
def displayAccounts() :
'''
Function that returns all the saved accounts
'''
return Account.displayAccounts()
def main() :
print('Hallo, Welcome to your Pass-Vault.\nWhat is your name?')
user = input()
print('\n.')
print(f'Hello {user},\nDo you have an account with us?\n Notice!Notice!Notice!\nYou can only save 4 accounts with a free subscription account.')
print('\n.')
while True :
print('Use these short-codes:\ncc - to create new account credentials...\ndc - to display your credentials...\nfc - to find a saved account...\nex - to exit the vault.')
shortCode = input().lower()
if shortCode == 'cc' :
print('\n.')
print('New Account Credentials:')
print('-' * 24)
print('Account Name:')
account = input()
print('Username:')
username = input()
print('Password:')
password = input()
saveAccount(createAccount(account, username, password))
print('\n.')
print(f'Successful. Credentials for your {account} account have been created.')
print('\n.')
elif shortCode == 'dc' :
if displayAccounts() :
print('Successful.\nBelow are your credentials saved with us...')
print('\n.')
for account in displayAccounts() :
print(f'Account: {account.account}\n-->Username: {account.username}\n-->Password: {account.password}')
print('\n.')
else :
print('\n.')
print('Oops! Your vault is empty.\nSpare yourself the memory hustle and save your credentials with us.')
print('\n.')
elif shortCode == 'fc' :
print('Enter the account you want to search for...')
searchAccount = input()
if accountExists(searchAccount) :
search4Acc = findAccount(searchAccount)
print('\n.')
print(f'Successful!\nCredentials for your {search4Acc.account} account')
print('-' * 45)
print(f'-->Username: {search4Acc.username}')
print(f'-->Password: {search4Acc.password}')
print('-' * 45)
else :
print('\n.')
print('Oops! Your vault doesn\'t seem to contain such an account saved.')
print('\n.')
elif shortCode == 'ex' :
print('\n.')
print('We hope we have been of service to you..\nBye...')
print('\n.')
break
else :
print('\n.')
print('I for sure didn\'t get that.\nPlease use the provided short codes')
print('\n.')
if __name__ == '__main__' :
main()
'''
Making the main function to run only if it was run from this module.
'''