-
Notifications
You must be signed in to change notification settings - Fork 0
/
banner.py
24 lines (21 loc) · 1003 Bytes
/
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
# This work is licensed under a Creative Commons Attribution 4.0 International License.
# You must give appropriate credit, provide a link to the license, and indicate if changes were made.
# Details: https://creativecommons.org/licenses/by/4.0/
banner_displayed = False
def display_banner():
global banner_displayed
if not banner_displayed:
banner = """
===================================================
==== __ __ _____ ====
==== / _\ ___ _ __ __ _ _ __ /__\/ _ / ====
==== \ \ / __|| '__|/ _` || '_ \ /_\ \// / ====
==== _\ \| (__ | | | (_| || |_) |//__ / //\ ====
==== \__/ \___||_| \__,_|| .__/ \__/ /____/ ====
==== ScrapEZ webscraper |_| by jakk-er ====
===================================================
\n \n"""
print(banner)
banner_displayed = True
if __name__ == "__main__":
display_banner()