forked from keraattin/pinger
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathbanner.py
More file actions
14 lines (12 loc) · 735 Bytes
/
banner.py
File metadata and controls
14 lines (12 loc) · 735 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
#!/usr/bin/env python3
import colors
def show_banner():
print(colors.LIGHT_GREEN+" _ "+colors.NC)
print(colors.LIGHT_GREEN+" (_) "+colors.NC)
print(colors.LIGHT_GREEN+" _ __ _ _ __ __ _ ___ _ __ "+colors.NC)
print(colors.LIGHT_GREEN+"| '_ \ | || '_ \ / _` | / _ \| '__| "+colors.NC)
print(colors.LIGHT_GREEN+"| |_) || || | | || (_| || __/| | "+colors.NC)
print(colors.LIGHT_GREEN+"| .__/ |_||_| |_| \__, | \___||_| "+colors.NC)
print(colors.LIGHT_GREEN+"| | __/ | "+colors.NC)
print(colors.LIGHT_GREEN+"|_| |___/ "+colors.NC)
print("")