loopstring 0.0.3__tar.gz → 0.0.4__tar.gz
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- {loopstring-0.0.3 → loopstring-0.0.4}/PKG-INFO +1 -1
- {loopstring-0.0.3 → loopstring-0.0.4}/loopstring/loopstring.py +5 -7
- {loopstring-0.0.3 → loopstring-0.0.4}/loopstring.egg-info/PKG-INFO +1 -1
- {loopstring-0.0.3 → loopstring-0.0.4}/pyproject.toml +1 -1
- {loopstring-0.0.3 → loopstring-0.0.4}/README.md +0 -0
- {loopstring-0.0.3 → loopstring-0.0.4}/loopstring/__init__.py +0 -0
- {loopstring-0.0.3 → loopstring-0.0.4}/loopstring.egg-info/SOURCES.txt +0 -0
- {loopstring-0.0.3 → loopstring-0.0.4}/loopstring.egg-info/dependency_links.txt +0 -0
- {loopstring-0.0.3 → loopstring-0.0.4}/loopstring.egg-info/top_level.txt +0 -0
- {loopstring-0.0.3 → loopstring-0.0.4}/setup.cfg +0 -0
- {loopstring-0.0.3 → loopstring-0.0.4}/setup.py +0 -0
|
@@ -8,7 +8,6 @@ class FG:
|
|
|
8
8
|
MAGENTA = "\033[35m"
|
|
9
9
|
CYAN = "\033[36m"
|
|
10
10
|
WHITE = "\033[37m"
|
|
11
|
-
RESET = "\033[39m"
|
|
12
11
|
|
|
13
12
|
class BG:
|
|
14
13
|
"""Background colors"""
|
|
@@ -30,6 +29,7 @@ class FORMAT:
|
|
|
30
29
|
UNDERLINE = '\033[4m' # Underline
|
|
31
30
|
REVERSE = '\033[7m' # Reverse video
|
|
32
31
|
STRIKETHROUGH = '\033[9m' # Strikethrough
|
|
32
|
+
RESET = "\033[39m"
|
|
33
33
|
|
|
34
34
|
class BOXES:
|
|
35
35
|
@staticmethod
|
|
@@ -68,12 +68,10 @@ class BOXES:
|
|
|
68
68
|
|
|
69
69
|
class SYMBOLS:
|
|
70
70
|
"""Cool symbols!"""
|
|
71
|
-
HEXAGON = '⬢'
|
|
72
|
-
PENTAGON = '⬟'
|
|
73
|
-
STAR = '⭑'
|
|
74
|
-
DOWNLOAD = '⤓'
|
|
75
|
-
REVERSE = '\033[7m' # Reverse video
|
|
76
|
-
STRIKETHROUGH = '\033[9m' # Strikethrough
|
|
71
|
+
HEXAGON = '⬢'
|
|
72
|
+
PENTAGON = '⬟'
|
|
73
|
+
STAR = '⭑'
|
|
74
|
+
DOWNLOAD = '⤓'
|
|
77
75
|
LIGHTSHADE = '░'
|
|
78
76
|
MEDIUMSHADE = '▒'
|
|
79
77
|
DARKSHADE = '▓'
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|