Skip to content

Commit d8bcdce

Browse files
committed
Create a SeleniumBase logo for console interfaces
1 parent 16e7f25 commit d8bcdce

File tree

1 file changed

+58
-0
lines changed

1 file changed

+58
-0
lines changed
Lines changed: 58 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,58 @@
1+
""" SeleniumBase Logo Processing (for the console scripts interface)
2+
Logo generated from:
3+
http://www.patorjk.com/software/taag/#p=display&f=Slant&t=SeleniumBase """
4+
5+
import colorama
6+
7+
r'''
8+
______ __ _ ____
9+
/ ____/__ / /__ ____ (_)_ ______ ___ / __ `____ ________
10+
\__ \/ _ \/ / _ \/ __ \/ / / / / __ `__ \/ /_/ / __ `/ ___/ _ \
11+
___/ / __/ / __/ / / / / /_/ / / / / / / /_) / /_/ (__ ) __/
12+
/____/\___/_/\___/_/ /_/_/\__,_/_/ /_/ /_/_____/\__,_/____/\___/
13+
'''
14+
15+
16+
def get_seleniumbase_logo():
17+
colorama.init(autoreset=True)
18+
c1 = colorama.Fore.BLUE + colorama.Back.CYAN
19+
c2 = colorama.Fore.CYAN + colorama.Back.BLUE
20+
cr = colorama.Style.RESET_ALL
21+
sb = c1
22+
sb += "\n"
23+
sb += " ______ __ _ "
24+
sb += c2
25+
sb += "____ "
26+
sb += c1
27+
sb += "\n"
28+
sb += c1
29+
sb += " / ____/__ / /__ ____ (_)_ ______ ___ "
30+
sb += c2
31+
sb += "/ __ `____ ________ "
32+
sb += c1
33+
sb += "\n"
34+
sb += c1
35+
sb += " \\__ \\/ _ \\/ / _ \\/ __ \\/ / / / / __ `__ \\"
36+
sb += c2
37+
sb += "/ /_/ / __ `/ ___/ _ \\"
38+
sb += c1
39+
sb += "\n"
40+
sb += c1
41+
sb += " ___/ / __/ / __/ / / / / /_/ / / / / / "
42+
sb += c2
43+
sb += "/ /_) / /_/ (__ ) __/"
44+
sb += c1
45+
sb += "\n"
46+
sb += c1
47+
sb += "/____/\\___/_/\\___/_/ /_/_/\\__,_/_/ /_/ /_"
48+
sb += c2
49+
sb += "/_____/\\__,_/____/\\___/ "
50+
sb += c1
51+
sb += "\n"
52+
sb += c1
53+
sb += " "
54+
sb += c2
55+
sb += " "
56+
sb += c1
57+
sb += cr
58+
return sb

0 commit comments

Comments
 (0)