loopstring 0.0.5__tar.gz → 0.1.0__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.5 → loopstring-0.1.0}/PKG-INFO +1 -1
- {loopstring-0.0.5 → loopstring-0.1.0}/loopstring/loopstring.py +26 -5
- {loopstring-0.0.5 → loopstring-0.1.0}/loopstring.egg-info/PKG-INFO +1 -1
- {loopstring-0.0.5 → loopstring-0.1.0}/pyproject.toml +1 -1
- {loopstring-0.0.5 → loopstring-0.1.0}/README.md +0 -0
- {loopstring-0.0.5 → loopstring-0.1.0}/loopstring/__init__.py +0 -0
- {loopstring-0.0.5 → loopstring-0.1.0}/loopstring.egg-info/SOURCES.txt +0 -0
- {loopstring-0.0.5 → loopstring-0.1.0}/loopstring.egg-info/dependency_links.txt +0 -0
- {loopstring-0.0.5 → loopstring-0.1.0}/loopstring.egg-info/top_level.txt +0 -0
- {loopstring-0.0.5 → loopstring-0.1.0}/setup.cfg +0 -0
- {loopstring-0.0.5 → loopstring-0.1.0}/setup.py +0 -0
|
@@ -79,11 +79,12 @@ class BOXES:
|
|
|
79
79
|
|
|
80
80
|
|
|
81
81
|
class SYMBOLS:
|
|
82
|
-
"""Cool symbols!"""
|
|
83
|
-
|
|
84
|
-
|
|
85
|
-
|
|
86
|
-
|
|
82
|
+
"""Cool symbols for layouts, dashboards, and loading bars!"""
|
|
83
|
+
# Original Symbols
|
|
84
|
+
HEXAGON = '⬢'
|
|
85
|
+
PENTAGON = '⬟'
|
|
86
|
+
STAR = '⭑'
|
|
87
|
+
DOWNLOAD = '⤓'
|
|
87
88
|
LIGHTSHADE = '░'
|
|
88
89
|
MEDIUMSHADE = '▒'
|
|
89
90
|
DARKSHADE = '▓'
|
|
@@ -98,3 +99,23 @@ class SYMBOLS:
|
|
|
98
99
|
FILLEDRIGHTTRIANGLE = '▶'
|
|
99
100
|
RIGHTTRIANGLE = '▷'
|
|
100
101
|
ASTROIDSTAR = '✦'
|
|
102
|
+
|
|
103
|
+
MONITOR = '🖵' # U+1F5B5 - Physical monitor screen layout
|
|
104
|
+
CLEAR_SCREEN = '⎚' # U+239A - Classic wipe/clear screen icon
|
|
105
|
+
PROMPT = '❯' # U+276F - Modern CLI input hook
|
|
106
|
+
NETWORK = '🛜︎' # U+1F6DC - Wi-Fi/Network status indicator
|
|
107
|
+
|
|
108
|
+
FILL_1_8 = '▏' # U+258F - Left 1/8 block fill
|
|
109
|
+
FILL_1_4 = '▎' # U+258E - Left 1/4 block fill
|
|
110
|
+
FILL_HALF = '▌' # U+258C - Left half block fill
|
|
111
|
+
FILL_3_4 = '▊' # U+258A - Left 3/4 block fill
|
|
112
|
+
|
|
113
|
+
FOLDER_CLOSED = '🗀' # U+1F5C0 - Closed directory item
|
|
114
|
+
FOLDER_OPEN = '🗁' # U+1F5C1 - Expanded directory folder
|
|
115
|
+
DOCUMENT = '🖹' # U+1F5B9 - Log/Text file symbol
|
|
116
|
+
TRASH = '🗑︎' # U+1F5D1 - Delete/Erase storage indicator
|
|
117
|
+
|
|
118
|
+
LOOP_INFINITY = '∞' # U+221E - Infinity track loop
|
|
119
|
+
LOOP_SINGLE = '➰︎' # U+27B0 - Light curly loop curl
|
|
120
|
+
LOOP_DOUBLE = '➿︎' # U+27BF - Double curly loop hook
|
|
121
|
+
LOOP_REFRESH = '⥁' # U+2941 - Circular reload sequence
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|