-
Notifications
You must be signed in to change notification settings - Fork 8
/
Copy pathbanner.py
76 lines (61 loc) · 2.07 KB
/
banner.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
import random
import colors
# All you need is..
class Banner:
def __init__(self):
self.sub_title = "\t\tTh3Hurrican3\n"
def show(self):
print(colors.YELLOW +
random.choice([b1, b2, b3, b4, b5]) + colors.DEFAULT)
print(colors.GREEN + self.sub_title + colors.DEFAULT)
b1 = Banner()
b1 = """
>=> >=> >=> >===>>=====> >=> >=>
>> >=> >>=> >=> >=> >> >=> >>=>
>=> >=> > >=> >=> >=> >=> >=> > >=>
>=> >=> >=> >=> >=> >=> >=> >=>
>=> >> >=> >=> >=> >=> >> >=>
>=> >=> >=> >=> >=> >=>
>=> >=> >=> >=> >=> >=>
"""
b2 = Banner()
b2 = """
______ ______________________ ___
___ |/ /___ _/__ __/__ |/ /
__ /|_/ / __ / __ / __ /|_/ /
_ / / / __/ / _ / _ / / /
/_/ /_/ /___/ /_/ /_/ /_/
"""
b3 = Banner()
b3 = """
__ __ _____ _______ __ __
| \/ |_ _|__ __| \/ |
| \ / | | | | | | \ / |
| |\/| | | | | | | |\/| |
| | | |_| |_ | | | | | |
|_| |_|_____| |_| |_| |_|
"""
b4 = Banner()
b4 = """
___ ___
/\ \ /\ \
|::\ \ ___ ___ |::\ \
|:|:\ \ /\__\ /\__\ |:|:\ \
__|:|\:\ \ /:/__/ /:/ / __|:|\:\ \
/::::|_\:\__\ /::\ \ /:/__/ /::::|_\:\__\
\:\~~\ \/__/ \/\:\ \__ /::\ \ \:\~~\ \/__/
\:\ \ ~~\:\/\__\ /:/\:\ \ \:\ \
\:\ \ \::/ / \/__\:\ \ \:\ \
\:\__\ /:/ / \:\__\ \:\__\
\/__/ \/__/ \/__/ \/__/
"""
b5 = Banner()
b5 = """
:::: :::: :::::::::::::::::::::::::: ::::
+:+:+: :+:+:+ :+: :+: +:+:+: :+:+:+
+:+ +:+:+ +:+ +:+ +:+ +:+ +:+:+ +:+
+#+ +:+ +#+ +#+ +#+ +#+ +:+ +#+
+#+ +#+ +#+ +#+ +#+ +#+
#+# #+# #+# #+# #+# #+#
### ############## ### ### ###
"""