File tree Expand file tree Collapse file tree 1 file changed +0
-5
lines changed Expand file tree Collapse file tree 1 file changed +0
-5
lines changed Original file line number Diff line number Diff line change 6
6
os .system ("clear" if os .name == "posix" else "cls" )
7
7
colorama .init (autoreset = True )
8
8
9
- # Define logo components with enhanced ASCII art
10
9
logo_color = Fore .LIGHTGREEN_EX
11
10
logo_reset = Style .RESET_ALL
12
11
logo_body = [
15
14
16
15
]
17
16
18
- # Build the centered logo
19
17
logo = logo_color
20
18
for line in logo_body :
21
19
stripped_length = len (line )
28
26
logo += centered_line + '\n '
29
27
logo += logo_reset
30
28
31
- # Developer information
32
29
developer_info = f"""{ Fore .YELLOW }
33
30
Developer : Tausif Zaman
34
31
Instagram : @_tausif_zaman
35
32
Github : tausifzaman
36
33
{ Style .RESET_ALL }
37
34
"""
38
35
39
- # Print elements
40
36
print ("\n " )
41
37
print (logo )
42
38
print ("\n \n " )
43
39
print (developer_info )
44
40
45
- # User interaction
46
41
text = input (f"{ Fore .CYAN } Enter text: { Style .RESET_ALL } " )
47
42
md5_hash = hashlib .md5 (text .encode ()).hexdigest ()
48
43
print (f"{ Fore .GREEN } MD5 Hash: { md5_hash } { Style .RESET_ALL } " )
You can’t perform that action at this time.
0 commit comments