We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent fce3049 commit 307da6dCopy full SHA for 307da6d
orangetool/orangetool_system.py
@@ -3,14 +3,7 @@
3
import subprocess as sub
4
import time
5
import requests
6
-logo = '''
7
-________ __ .__
8
-\_____ \____________ ____ ____ _____/ |_ ____ ____ | |
9
- / | \_ __ \__ \ / \ / ___\_/ __ \ __\/ _ \ / _ \| |
10
-/ | \ | \// __ \| | \/ /_/ > ___/| | ( <_> | <_> ) |__
11
-\_______ /__| (____ /___| /\___ / \___ >__| \____/ \____/|____/
12
- \/ \/ \//_____/ \/
13
-'''
+from art import tprint
14
ip_pattern = r"(?:[0-9]{1,3}\.){3}[0-9]{1,3}"
15
api_1 = "http://ipinfo.io/ip"
16
VERSION = "0.25"
@@ -138,7 +131,7 @@ def version():
138
131
139
132
:return: return orangetool-version number as string
140
133
"""
141
- print(logo)
134
+ tprint("orangetool",font="bulbhead")
142
135
return "orangetool-v" + VERSION
143
136
144
137
0 commit comments