-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathbanner.py
More file actions
24 lines (23 loc) · 1.34 KB
/
banner.py
File metadata and controls
24 lines (23 loc) · 1.34 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
from datetime import datetime
def getBanner():
current_year = datetime.now().year
banner= rf"""
_ _____ _____ ___ _ _ _ _
(_) _ / ___| / _ \ | (_) | | (_)
_| | | \ `--. / /_\ \_ __ _ __ | |_ ___ __ _| |_ _ ___ _ __
| | | | |`--. \ | _ | '_ \| '_ \| | |/ __/ _` | __| |/ _ \| '_ \
| \ \_/ /\__/ / | | | | |_) | |_) | | | (_| (_| | |_| | (_) | | | |
|_|\___/\____/ \_| |_/ .__/| .__/|_|_|\___\__,_|\__|_|\___/|_| |_|
| | | |
|_| |_|
___ _
/ _ \ | |
/ /_\ \_ __ __ _| |_ _ _______ _ __
| _ | '_ \ / _` | | | | |_ / _ \ '__|
| | | | | | | (_| | | |_| |/ / __/ |
\_| |_/_| |_|\__,_|_|\__, /___\___|_|
__/ |
|___/
NotSoSecure (c) {current_year} | Developed by Sanjay Gondaliya
"""
return banner