File tree Expand file tree Collapse file tree 1 file changed +58
-0
lines changed
seleniumbase/console_scripts Expand file tree Collapse file tree 1 file changed +58
-0
lines changed Original file line number Diff line number Diff line change
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
You can’t perform that action at this time.
0 commit comments