-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathoption_validator.py
62 lines (58 loc) · 1.68 KB
/
option_validator.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
from colorama.ansi import Fore, Style
from colours import print_with_color
import time
import sys
from extras import load_a, load_b,clear
import caesar_encryption as ce
import caesar_decryption as cd
def options():
option = input("Input an option: ")
print()
if option == '1':
time.sleep(1.5)
clear()
ce.intro()
ce.note()
print()
time.sleep(1)
plaintext = input("Enter the text: ")
time.sleep(0.5)
key = int(input("Enter the key: "))
print()
time.sleep(1)
print_with_color("--------------------------", color=Fore.YELLOW, brightness=Style.BRIGHT)
load_a()
ce.caesar_encryption(plaintext, key)
elif option == '2':
time.sleep(1.5)
clear()
cd.intro()
cd.note()
print()
time.sleep(1)
ciphertext = input("Enter the encrypted text: ")
time.sleep(0.5)
key = int(input("Enter the key: "))
print()
time.sleep(1)
print_with_color("--------------------------", color=Fore.YELLOW, brightness=Style.BRIGHT)
load_b()
cd.caesar_decryption(ciphertext, key)
elif option == '3':
time.sleep(1.5)
clear()
print_with_color('[~~~~~~~~~~~~~~~~~~~~~~~~]',color=Fore.MAGENTA)
time.sleep(1)
print(" Thank you! :)")
time.sleep(0.7)
print(" See you next time!")
time.sleep(0.5)
sys.exit()
else:
time.sleep(1.5)
print_with_color("Invalid Option.", color=Fore.RED)
time.sleep(0.5)
print_with_color("Try again!...", color=Fore.RED)
print()
time.sleep(1)
options()