hspylib-clitt 0.9.140__py3-none-any.whl → 0.9.141__py3-none-any.whl
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.
Potentially problematic release.
This version of hspylib-clitt might be problematic. Click here for more details.
- clitt/.version +1 -1
- clitt/__init__.py +2 -2
- clitt/addons/__init__.py +2 -2
- clitt/addons/appman/__init__.py +2 -2
- clitt/addons/appman/templates/__init__.py +2 -2
- clitt/addons/widman/__init__.py +2 -2
- clitt/addons/widman/widgets/__init__.py +2 -2
- clitt/core/__init__.py +2 -2
- clitt/core/exception/__init__.py +2 -2
- clitt/core/icons/__init__.py +2 -2
- clitt/core/icons/emojis/__init__.py +2 -2
- clitt/core/icons/font_awesome/__init__.py +2 -2
- clitt/core/term/__init__.py +2 -2
- clitt/core/tui/__init__.py +2 -2
- clitt/core/tui/line_input/__init__.py +2 -2
- clitt/core/tui/line_input/keyboard_input.py +8 -2
- clitt/core/tui/line_input/line_input.py +4 -1
- clitt/core/tui/mchoose/__init__.py +2 -2
- clitt/core/tui/mdashboard/__init__.py +2 -2
- clitt/core/tui/menu/__init__.py +2 -2
- clitt/core/tui/minput/__init__.py +2 -2
- clitt/core/tui/mselect/__init__.py +2 -2
- clitt/core/tui/table/__init__.py +2 -2
- clitt/utils/__init__.py +2 -2
- {hspylib_clitt-0.9.140.dist-info → hspylib_clitt-0.9.141.dist-info}/METADATA +20 -7
- {hspylib_clitt-0.9.140.dist-info → hspylib_clitt-0.9.141.dist-info}/RECORD +28 -28
- {hspylib_clitt-0.9.140.dist-info → hspylib_clitt-0.9.141.dist-info}/WHEEL +1 -1
- {hspylib_clitt-0.9.140.dist-info → hspylib_clitt-0.9.141.dist-info}/top_level.txt +0 -0
clitt/.version
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
0.9.
|
|
1
|
+
0.9.141
|
clitt/__init__.py
CHANGED
clitt/addons/__init__.py
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
# _*_ coding: utf-8 _*_
|
|
2
2
|
#
|
|
3
|
-
# hspylib-clitt v0.9.
|
|
3
|
+
# hspylib-clitt v0.9.141
|
|
4
4
|
#
|
|
5
5
|
# Package: main.clitt.addons
|
|
6
6
|
"""Package initialization."""
|
|
@@ -9,4 +9,4 @@ __all__ = [
|
|
|
9
9
|
'appman',
|
|
10
10
|
'widman'
|
|
11
11
|
]
|
|
12
|
-
__version__ = '0.9.
|
|
12
|
+
__version__ = '0.9.141'
|
clitt/addons/appman/__init__.py
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
# _*_ coding: utf-8 _*_
|
|
2
2
|
#
|
|
3
|
-
# hspylib-clitt v0.9.
|
|
3
|
+
# hspylib-clitt v0.9.141
|
|
4
4
|
#
|
|
5
5
|
# Package: main.clitt.addons.appman
|
|
6
6
|
"""Package initialization."""
|
|
@@ -10,4 +10,4 @@ __all__ = [
|
|
|
10
10
|
'appman_enums',
|
|
11
11
|
'templates'
|
|
12
12
|
]
|
|
13
|
-
__version__ = '0.9.
|
|
13
|
+
__version__ = '0.9.141'
|
clitt/addons/widman/__init__.py
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
# _*_ coding: utf-8 _*_
|
|
2
2
|
#
|
|
3
|
-
# hspylib-clitt v0.9.
|
|
3
|
+
# hspylib-clitt v0.9.141
|
|
4
4
|
#
|
|
5
5
|
# Package: main.clitt.addons.widman
|
|
6
6
|
"""Package initialization."""
|
|
@@ -11,4 +11,4 @@ __all__ = [
|
|
|
11
11
|
'widgets',
|
|
12
12
|
'widman'
|
|
13
13
|
]
|
|
14
|
-
__version__ = '0.9.
|
|
14
|
+
__version__ = '0.9.141'
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
# _*_ coding: utf-8 _*_
|
|
2
2
|
#
|
|
3
|
-
# hspylib-clitt v0.9.
|
|
3
|
+
# hspylib-clitt v0.9.141
|
|
4
4
|
#
|
|
5
5
|
# Package: main.clitt.addons.widman.widgets
|
|
6
6
|
"""Package initialization."""
|
|
@@ -11,4 +11,4 @@ __all__ = [
|
|
|
11
11
|
'widget_send_msg',
|
|
12
12
|
'widget_time_calc'
|
|
13
13
|
]
|
|
14
|
-
__version__ = '0.9.
|
|
14
|
+
__version__ = '0.9.141'
|
clitt/core/__init__.py
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
# _*_ coding: utf-8 _*_
|
|
2
2
|
#
|
|
3
|
-
# hspylib-clitt v0.9.
|
|
3
|
+
# hspylib-clitt v0.9.141
|
|
4
4
|
#
|
|
5
5
|
# Package: main.clitt.core
|
|
6
6
|
"""Package initialization."""
|
|
@@ -12,4 +12,4 @@ __all__ = [
|
|
|
12
12
|
'term',
|
|
13
13
|
'tui'
|
|
14
14
|
]
|
|
15
|
-
__version__ = '0.9.
|
|
15
|
+
__version__ = '0.9.141'
|
clitt/core/exception/__init__.py
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
# _*_ coding: utf-8 _*_
|
|
2
2
|
#
|
|
3
|
-
# hspylib-clitt v0.9.
|
|
3
|
+
# hspylib-clitt v0.9.141
|
|
4
4
|
#
|
|
5
5
|
# Package: main.clitt.core.exception
|
|
6
6
|
"""Package initialization."""
|
|
@@ -8,4 +8,4 @@
|
|
|
8
8
|
__all__ = [
|
|
9
9
|
'exceptions'
|
|
10
10
|
]
|
|
11
|
-
__version__ = '0.9.
|
|
11
|
+
__version__ = '0.9.141'
|
clitt/core/icons/__init__.py
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
# _*_ coding: utf-8 _*_
|
|
2
2
|
#
|
|
3
|
-
# hspylib-clitt v0.9.
|
|
3
|
+
# hspylib-clitt v0.9.141
|
|
4
4
|
#
|
|
5
5
|
# Package: main.clitt.core.icons
|
|
6
6
|
"""Package initialization."""
|
|
@@ -9,4 +9,4 @@ __all__ = [
|
|
|
9
9
|
'emojis',
|
|
10
10
|
'font_awesome'
|
|
11
11
|
]
|
|
12
|
-
__version__ = '0.9.
|
|
12
|
+
__version__ = '0.9.141'
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
# _*_ coding: utf-8 _*_
|
|
2
2
|
#
|
|
3
|
-
# hspylib-clitt v0.9.
|
|
3
|
+
# hspylib-clitt v0.9.141
|
|
4
4
|
#
|
|
5
5
|
# Package: main.clitt.core.icons.emojis
|
|
6
6
|
"""Package initialization."""
|
|
@@ -9,4 +9,4 @@ __all__ = [
|
|
|
9
9
|
'emojis',
|
|
10
10
|
'face_smiling'
|
|
11
11
|
]
|
|
12
|
-
__version__ = '0.9.
|
|
12
|
+
__version__ = '0.9.141'
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
# _*_ coding: utf-8 _*_
|
|
2
2
|
#
|
|
3
|
-
# hspylib-clitt v0.9.
|
|
3
|
+
# hspylib-clitt v0.9.141
|
|
4
4
|
#
|
|
5
5
|
# Package: main.clitt.core.icons.font_awesome
|
|
6
6
|
"""Package initialization."""
|
|
@@ -15,4 +15,4 @@ __all__ = [
|
|
|
15
15
|
'trickplay_icons',
|
|
16
16
|
'widget_icons'
|
|
17
17
|
]
|
|
18
|
-
__version__ = '0.9.
|
|
18
|
+
__version__ = '0.9.141'
|
clitt/core/term/__init__.py
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
# _*_ coding: utf-8 _*_
|
|
2
2
|
#
|
|
3
|
-
# hspylib-clitt v0.9.
|
|
3
|
+
# hspylib-clitt v0.9.141
|
|
4
4
|
#
|
|
5
5
|
# Package: main.clitt.core.term
|
|
6
6
|
"""Package initialization."""
|
|
@@ -11,4 +11,4 @@ __all__ = [
|
|
|
11
11
|
'screen',
|
|
12
12
|
'terminal'
|
|
13
13
|
]
|
|
14
|
-
__version__ = '0.9.
|
|
14
|
+
__version__ = '0.9.141'
|
clitt/core/tui/__init__.py
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
# _*_ coding: utf-8 _*_
|
|
2
2
|
#
|
|
3
|
-
# hspylib-clitt v0.9.
|
|
3
|
+
# hspylib-clitt v0.9.141
|
|
4
4
|
#
|
|
5
5
|
# Package: main.clitt.core.tui
|
|
6
6
|
"""Package initialization."""
|
|
@@ -17,4 +17,4 @@ __all__ = [
|
|
|
17
17
|
'tui_component',
|
|
18
18
|
'tui_preferences'
|
|
19
19
|
]
|
|
20
|
-
__version__ = '0.9.
|
|
20
|
+
__version__ = '0.9.141'
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
# _*_ coding: utf-8 _*_
|
|
2
2
|
#
|
|
3
|
-
# hspylib-clitt v0.9.
|
|
3
|
+
# hspylib-clitt v0.9.141
|
|
4
4
|
#
|
|
5
5
|
# Package: main.clitt.core.tui.line_input
|
|
6
6
|
"""Package initialization."""
|
|
@@ -9,4 +9,4 @@ __all__ = [
|
|
|
9
9
|
'keyboard_input',
|
|
10
10
|
'line_input'
|
|
11
11
|
]
|
|
12
|
-
__version__ = '0.9.
|
|
12
|
+
__version__ = '0.9.141'
|
|
@@ -139,7 +139,8 @@ class KeyboardInput(TUIComponent):
|
|
|
139
139
|
prompt_color: VtColor = VtColor.NC,
|
|
140
140
|
text_color: VtColor = VtColor.NC,
|
|
141
141
|
navbar_enable: bool = False,
|
|
142
|
-
case_insensitive: bool = True
|
|
142
|
+
case_insensitive: bool = True,
|
|
143
|
+
markdown: bool = False,
|
|
143
144
|
):
|
|
144
145
|
self._HISTORY[-1] = ""
|
|
145
146
|
self._HIST_INDEX = max(0, len(self._HISTORY) - 1)
|
|
@@ -148,6 +149,7 @@ class KeyboardInput(TUIComponent):
|
|
|
148
149
|
self._prompt_color: VtColor = prompt_color
|
|
149
150
|
self._text_color: VtColor = text_color
|
|
150
151
|
self._navbar_enable: bool = navbar_enable
|
|
152
|
+
self._markdown = markdown
|
|
151
153
|
self._case_insensitive: bool = case_insensitive
|
|
152
154
|
self._offset: Position = 0, 0
|
|
153
155
|
self._input_index: int = 0
|
|
@@ -188,6 +190,10 @@ class KeyboardInput(TUIComponent):
|
|
|
188
190
|
def bindings(self) -> KeyBinding:
|
|
189
191
|
return self._bindings
|
|
190
192
|
|
|
193
|
+
@property
|
|
194
|
+
def markdown(self) -> bool:
|
|
195
|
+
return self._markdown
|
|
196
|
+
|
|
191
197
|
def execute(self) -> Optional[str | Keyboard]:
|
|
192
198
|
keypress = self._loop(cleanup=False) or Keyboard.VK_ESC
|
|
193
199
|
if keypress.isEnter():
|
|
@@ -239,7 +245,7 @@ class KeyboardInput(TUIComponent):
|
|
|
239
245
|
self.cursor.move(self._offset[0], Direction.UP)
|
|
240
246
|
self.cursor.move(self._offset[1], Direction.LEFT)
|
|
241
247
|
self.cursor.erase(Direction.DOWN)
|
|
242
|
-
self.write(self.prompt)
|
|
248
|
+
self.write(self.prompt, markdown=self.markdown)
|
|
243
249
|
if self.text:
|
|
244
250
|
self.write(self.text)
|
|
245
251
|
self._render_suggestions()
|
|
@@ -25,6 +25,7 @@ def line_input(
|
|
|
25
25
|
text_color: VtColor = VtColor.NC,
|
|
26
26
|
navbar_enable: bool = False,
|
|
27
27
|
case_insensitive: bool = True,
|
|
28
|
+
markdown: bool = False,
|
|
28
29
|
) -> Optional[str | Keyboard]:
|
|
29
30
|
"""Read a string from standard input.
|
|
30
31
|
:param prompt: The message to be displayed to the user.
|
|
@@ -33,6 +34,8 @@ def line_input(
|
|
|
33
34
|
:param text_color: The color of the input text.
|
|
34
35
|
:param navbar_enable: Whether to display the navbar or not.
|
|
35
36
|
:param case_insensitive: Whether suggestions are case insensitive or not.
|
|
37
|
+
:param markdown: Whether to render rich markdown text.
|
|
36
38
|
"""
|
|
37
|
-
ptt = KeyboardInput(
|
|
39
|
+
ptt = KeyboardInput(
|
|
40
|
+
prompt, placeholder, prompt_color, text_color, navbar_enable, case_insensitive, markdown)
|
|
38
41
|
return ptt.execute()
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
# _*_ coding: utf-8 _*_
|
|
2
2
|
#
|
|
3
|
-
# hspylib-clitt v0.9.
|
|
3
|
+
# hspylib-clitt v0.9.141
|
|
4
4
|
#
|
|
5
5
|
# Package: main.clitt.core.tui.mchoose
|
|
6
6
|
"""Package initialization."""
|
|
@@ -9,4 +9,4 @@ __all__ = [
|
|
|
9
9
|
'mchoose',
|
|
10
10
|
'menu_choose'
|
|
11
11
|
]
|
|
12
|
-
__version__ = '0.9.
|
|
12
|
+
__version__ = '0.9.141'
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
# _*_ coding: utf-8 _*_
|
|
2
2
|
#
|
|
3
|
-
# hspylib-clitt v0.9.
|
|
3
|
+
# hspylib-clitt v0.9.141
|
|
4
4
|
#
|
|
5
5
|
# Package: main.clitt.core.tui.mdashboard
|
|
6
6
|
"""Package initialization."""
|
|
@@ -11,4 +11,4 @@ __all__ = [
|
|
|
11
11
|
'mdashboard',
|
|
12
12
|
'menu_dashboard'
|
|
13
13
|
]
|
|
14
|
-
__version__ = '0.9.
|
|
14
|
+
__version__ = '0.9.141'
|
clitt/core/tui/menu/__init__.py
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
# _*_ coding: utf-8 _*_
|
|
2
2
|
#
|
|
3
|
-
# hspylib-clitt v0.9.
|
|
3
|
+
# hspylib-clitt v0.9.141
|
|
4
4
|
#
|
|
5
5
|
# Package: main.clitt.core.tui.menu
|
|
6
6
|
"""Package initialization."""
|
|
@@ -13,4 +13,4 @@ __all__ = [
|
|
|
13
13
|
'tui_menu_ui',
|
|
14
14
|
'tui_menu_view'
|
|
15
15
|
]
|
|
16
|
-
__version__ = '0.9.
|
|
16
|
+
__version__ = '0.9.141'
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
# _*_ coding: utf-8 _*_
|
|
2
2
|
#
|
|
3
|
-
# hspylib-clitt v0.9.
|
|
3
|
+
# hspylib-clitt v0.9.141
|
|
4
4
|
#
|
|
5
5
|
# Package: main.clitt.core.tui.minput
|
|
6
6
|
"""Package initialization."""
|
|
@@ -16,4 +16,4 @@ __all__ = [
|
|
|
16
16
|
'minput',
|
|
17
17
|
'minput_utils'
|
|
18
18
|
]
|
|
19
|
-
__version__ = '0.9.
|
|
19
|
+
__version__ = '0.9.141'
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
# _*_ coding: utf-8 _*_
|
|
2
2
|
#
|
|
3
|
-
# hspylib-clitt v0.9.
|
|
3
|
+
# hspylib-clitt v0.9.141
|
|
4
4
|
#
|
|
5
5
|
# Package: main.clitt.core.tui.mselect
|
|
6
6
|
"""Package initialization."""
|
|
@@ -9,4 +9,4 @@ __all__ = [
|
|
|
9
9
|
'menu_select',
|
|
10
10
|
'mselect'
|
|
11
11
|
]
|
|
12
|
-
__version__ = '0.9.
|
|
12
|
+
__version__ = '0.9.141'
|
clitt/core/tui/table/__init__.py
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
# _*_ coding: utf-8 _*_
|
|
2
2
|
#
|
|
3
|
-
# hspylib-clitt v0.9.
|
|
3
|
+
# hspylib-clitt v0.9.141
|
|
4
4
|
#
|
|
5
5
|
# Package: main.clitt.core.tui.table
|
|
6
6
|
"""Package initialization."""
|
|
@@ -9,4 +9,4 @@ __all__ = [
|
|
|
9
9
|
'table_enums',
|
|
10
10
|
'table_renderer'
|
|
11
11
|
]
|
|
12
|
-
__version__ = '0.9.
|
|
12
|
+
__version__ = '0.9.141'
|
clitt/utils/__init__.py
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
|
-
Metadata-Version: 2.
|
|
1
|
+
Metadata-Version: 2.2
|
|
2
2
|
Name: hspylib-clitt
|
|
3
|
-
Version: 0.9.
|
|
3
|
+
Version: 0.9.141
|
|
4
4
|
Summary: HsPyLib - CLI Terminal Tools
|
|
5
5
|
Home-page: https://github.com/yorevs/hspylib
|
|
6
6
|
Author: Hugo Saporetti Junior
|
|
@@ -26,10 +26,23 @@ Classifier: Intended Audience :: Developers
|
|
|
26
26
|
Requires-Python: >=3.10
|
|
27
27
|
Description-Content-Type: text/markdown
|
|
28
28
|
Requires-Dist: hspylib
|
|
29
|
-
Requires-Dist: pyperclip
|
|
30
|
-
Requires-Dist: urllib3
|
|
31
|
-
Requires-Dist: emoji
|
|
32
|
-
Requires-Dist: rich
|
|
29
|
+
Requires-Dist: pyperclip>=1.9.0
|
|
30
|
+
Requires-Dist: urllib3>=1.26.20
|
|
31
|
+
Requires-Dist: emoji>=2.12.1
|
|
32
|
+
Requires-Dist: rich>=13.9.4
|
|
33
|
+
Dynamic: author
|
|
34
|
+
Dynamic: author-email
|
|
35
|
+
Dynamic: classifier
|
|
36
|
+
Dynamic: description
|
|
37
|
+
Dynamic: description-content-type
|
|
38
|
+
Dynamic: home-page
|
|
39
|
+
Dynamic: keywords
|
|
40
|
+
Dynamic: license
|
|
41
|
+
Dynamic: platform
|
|
42
|
+
Dynamic: project-url
|
|
43
|
+
Dynamic: requires-dist
|
|
44
|
+
Dynamic: requires-python
|
|
45
|
+
Dynamic: summary
|
|
33
46
|
|
|
34
47
|
<img src="https://iili.io/HYBJFA7.png" width="64" height="64" align="right" />
|
|
35
48
|
|
|
@@ -41,7 +54,7 @@ Requires-Dist: rich >=13.8.1
|
|
|
41
54
|
[](https://gitter.im/hspylib/community)
|
|
42
55
|
[](https://www.paypal.com/cgi-bin/webscr?cmd=_s-xclick&hosted_button_id=J5CDEFLF6M3H4)
|
|
43
56
|
[](LICENSE.md)
|
|
44
|
-
[](docs/CHANGELOG.md#unreleased)
|
|
45
58
|
[](https://github.com/yorevs/hspylib/actions/workflows/build-and-test.yml)
|
|
46
59
|
|
|
47
60
|
HsPyLib is not just a Python library; it's a gateway to elevating your programming experience to new heights. Built on
|
|
@@ -1,13 +1,13 @@
|
|
|
1
|
-
clitt/.version,sha256=
|
|
1
|
+
clitt/.version,sha256=adWcZcRNPId_eE0_3HKUM_KadK3kuvP4N-E5ZU3TIi4,8
|
|
2
2
|
clitt/__classpath__.py,sha256=YA8poBJMuyccu2P28gJaeHw9t7V367pU80tjnEH8n3U,886
|
|
3
|
-
clitt/__init__.py,sha256=
|
|
3
|
+
clitt/__init__.py,sha256=sUBgN4a77rGr19SjqZ5m6jmm8RUWRMJYwp6eHlztroE,184
|
|
4
4
|
clitt/__main__.py,sha256=TRcAWnZV3Vl04wTbPo5juwugB7B6KtkmfT3etGdHyJU,5322
|
|
5
5
|
clitt/welcome.txt,sha256=z72ySJw-1VQHvWmd8pZ95P6t4zEkIWGbqTRT83P2hJw,169
|
|
6
|
-
clitt/addons/__init__.py,sha256=
|
|
7
|
-
clitt/addons/appman/__init__.py,sha256=
|
|
6
|
+
clitt/addons/__init__.py,sha256=lrrhdA5fIqn2nbeBWada4hHY9lUV--Gf9MCqVtJMB84,179
|
|
7
|
+
clitt/addons/appman/__init__.py,sha256=SGeOKIJlPec8nzhi1pF7Om14G_UtfcYADAUG2oOqfUY,210
|
|
8
8
|
clitt/addons/appman/appman.py,sha256=D2lGCVgxWxzLX-o60X1dtpZCC8tUCq9Vn8UZA200Jt4,13265
|
|
9
9
|
clitt/addons/appman/appman_enums.py,sha256=p3ERhgc5iaJ_QmtRCwHHk9mzXQ_Ds1-s__vwYrwRVZY,871
|
|
10
|
-
clitt/addons/appman/templates/__init__.py,sha256=
|
|
10
|
+
clitt/addons/appman/templates/__init__.py,sha256=eRmkjkAl6ri87BGencmsnuyEv5u14C94g8wSP4dtVyg,173
|
|
11
11
|
clitt/addons/appman/templates/build.gradle.tpl,sha256=Aj46S0PYaAZgRtgdJtnWo4h0b_1MLX8YOsE4Z0mMi5Y,1796
|
|
12
12
|
clitt/addons/appman/templates/classpath.py.tpl,sha256=R60uLvVxeJ7nJCXCvav_9LAnDe5VOfJqWO-T1QAlwAc,397
|
|
13
13
|
clitt/addons/appman/templates/dependencies.hspd.tpl,sha256=bbVNU6XBm5QT28lvH7Bp_4nlXvoD-LwX5kGQ-CPhOEA,764
|
|
@@ -20,24 +20,24 @@ clitt/addons/appman/templates/run.sh.tpl,sha256=2xpuHjZP9-7j14dAA2CqPm4G2xtnuenf
|
|
|
20
20
|
clitt/addons/appman/templates/test_main.py.tpl,sha256=y5Bo0ku6FP67WjHfYUF4Kt9tdQ67MSlN6LgoF_NUm-U,1241
|
|
21
21
|
clitt/addons/appman/templates/usage.txt.tpl,sha256=R0e48HCeD7PDbWnX6HGIjz6gr_hBdp-zK6V42U1Aexw,217
|
|
22
22
|
clitt/addons/appman/templates/widget.py.tpl,sha256=-4q8hYP1Xdx8ttexeHuFnjMH_DoBANEoN9f59jzHDR4,1670
|
|
23
|
-
clitt/addons/widman/__init__.py,sha256=
|
|
23
|
+
clitt/addons/widman/__init__.py,sha256=ub8RVIDReQvyREG2ezVd4unZMdgGJntIFdJUf7aROo0,223
|
|
24
24
|
clitt/addons/widman/widget.py,sha256=nQZCbUy-G0lpO4PMepSeTmJTECJgNY4bp2prQ5zzYlY,1919
|
|
25
25
|
clitt/addons/widman/widget_entry.py,sha256=KHYX_pL7ZNg3rtlG_GvypqPIPBqVzDljO5PhpcQw1JU,1357
|
|
26
26
|
clitt/addons/widman/widman.py,sha256=yd2rSdg06ZqaU3c1EkhjtxLN9WJCbgGAjcccIHV0tgw,5279
|
|
27
|
-
clitt/addons/widman/widgets/__init__.py,sha256=
|
|
27
|
+
clitt/addons/widman/widgets/__init__.py,sha256=L0a0kassmI6lpqbygsn-yFLn_BQ9dQrP5Wc0WrCIlFI,254
|
|
28
28
|
clitt/addons/widman/widgets/widget_free.py,sha256=oRM1UFti7TyIHfZYW9tunYA6bHelxZHmCxvNnJWAjkA,4000
|
|
29
29
|
clitt/addons/widman/widgets/widget_punch.py,sha256=GQRJadedh_zxyhacH65FmKeIOQV2nMEBmahdEzhfB7c,10606
|
|
30
30
|
clitt/addons/widman/widgets/widget_send_msg.py,sha256=RqqD6ss7wJqw6vJzS5C9uqs3OhyOCXYb8d329_8O8hc,11057
|
|
31
31
|
clitt/addons/widman/widgets/widget_time_calc.py,sha256=fusZRgPqgSDhxNeiPK1vhul9Fz8PzIaj2cuxP-aFb5k,5036
|
|
32
|
-
clitt/core/__init__.py,sha256=
|
|
32
|
+
clitt/core/__init__.py,sha256=ylFL8quUt0-K0ajN9ilP7nBN9qPP5QwK5M0JuREd9iE,224
|
|
33
33
|
clitt/core/preferences.py,sha256=cbWjL2yfE59-T1vzTsXCrrRRsBJ4LHLqqESTI-ujsDc,3141
|
|
34
|
-
clitt/core/exception/__init__.py,sha256=
|
|
34
|
+
clitt/core/exception/__init__.py,sha256=16qW5qBZad0UWZQN8Iv4H5t8V1xwG-PCf7oP7rxylcI,176
|
|
35
35
|
clitt/core/exception/exceptions.py,sha256=vfKRGmGX32qQksrcrej4ncPCqCt9smmtJa0vc8FLkn4,477
|
|
36
|
-
clitt/core/icons/__init__.py,sha256=
|
|
37
|
-
clitt/core/icons/emojis/__init__.py,sha256=
|
|
36
|
+
clitt/core/icons/__init__.py,sha256=KKQC_WNKzEy1Nkr8GxmBtdLs6G5cbVkSUB8dbQfkfE8,189
|
|
37
|
+
clitt/core/icons/emojis/__init__.py,sha256=i0GU7JYpUetmuJ9ynqFzX4uXrHbcuh4nidqTmSY8-nw,196
|
|
38
38
|
clitt/core/icons/emojis/emojis.py,sha256=fBxVIPfGRwzbmx6yGsX7oIpngiVwuQkxrmd-oAkK64Y,1110
|
|
39
39
|
clitt/core/icons/emojis/face_smiling.py,sha256=2NvJoMQ2q2VFBv2J2JrVw5UjWz7b6Eqh8VgORhbAfcM,1270
|
|
40
|
-
clitt/core/icons/font_awesome/__init__.py,sha256=
|
|
40
|
+
clitt/core/icons/font_awesome/__init__.py,sha256=xzHGJzOl4xHvWcAliP5_D6zazbUuP8eDDJurGV1NkY0,325
|
|
41
41
|
clitt/core/icons/font_awesome/app_icons.py,sha256=zlD_AnwmrD0LKkd2Ej9jGmQPEa2TYGguvPbgfBUxuzM,1701
|
|
42
42
|
clitt/core/icons/font_awesome/awesome.py,sha256=JyyobxTZ9VVa8y_S07iLvJZWbWA671esav1-p5PKZ9Y,2242
|
|
43
43
|
clitt/core/icons/font_awesome/dashboard_icons.py,sha256=hdUQD55819mrV7z0Y_rJI4WiqgrWExjl3ULFabIf8Kc,3121
|
|
@@ -46,34 +46,34 @@ clitt/core/icons/font_awesome/game_icons.py,sha256=wf5q3n4tlnpY-h0Hazj4_SYuhFJzX
|
|
|
46
46
|
clitt/core/icons/font_awesome/nav_icons.py,sha256=egiNnVot_diKYL5VFUI3sPTrBSt41F5iO-mpfPZKe20,1182
|
|
47
47
|
clitt/core/icons/font_awesome/trickplay_icons.py,sha256=mb_wXF3j3OhG_6CZyFbOltwwg-l_dyzmNg8OqAkOub8,1080
|
|
48
48
|
clitt/core/icons/font_awesome/widget_icons.py,sha256=y160guCrnRLHxUfKlMq6FS0zsTsJ-gcW1Vs-wnjIjKk,1025
|
|
49
|
-
clitt/core/term/__init__.py,sha256=
|
|
49
|
+
clitt/core/term/__init__.py,sha256=pcxwvJl1de3gSEcY2hzATvFTmiHBhlm2A7SjbUjqOMU,215
|
|
50
50
|
clitt/core/term/commons.py,sha256=1qRiSDRmaIuT6ivVFUiXd4CU35QJbrVzJvBI-FLwAbo,3122
|
|
51
51
|
clitt/core/term/cursor.py,sha256=99NbsU4qWSe29hc_QPLzxGE9JzfTyiDnVUm0GdzfQwk,6780
|
|
52
52
|
clitt/core/term/screen.py,sha256=V24gFKKgTj-aywpkeD1c5zc8cNb5EA4crvfW_bQAIlI,3328
|
|
53
53
|
clitt/core/term/terminal.py,sha256=Y8ACHKONosuLaxK9biIOdMPcrEvpNC4H2a-UJVr95jg,8366
|
|
54
|
-
clitt/core/tui/__init__.py,sha256=
|
|
54
|
+
clitt/core/tui/__init__.py,sha256=mK92D7ElCUwXgT3X2jMGPEK2bvHH7_1mN0DwkCPlSuo,333
|
|
55
55
|
clitt/core/tui/tui_application.py,sha256=V2HvUYzSRSDquoPnj21uIIcXMiz58sWiYA_s7XL2OXk,1650
|
|
56
56
|
clitt/core/tui/tui_component.py,sha256=9qbgaXLh8dSUHqwT4MRK2iHuXnV67HMxP1qhmGMHPyA,5147
|
|
57
57
|
clitt/core/tui/tui_preferences.py,sha256=QnPLgSg51tQZVKN4p7EpYvzXA3DadOfTmhEKZ6-iWUA,3109
|
|
58
|
-
clitt/core/tui/line_input/__init__.py,sha256=
|
|
59
|
-
clitt/core/tui/line_input/keyboard_input.py,sha256=
|
|
60
|
-
clitt/core/tui/line_input/line_input.py,sha256=
|
|
61
|
-
clitt/core/tui/mchoose/__init__.py,sha256
|
|
58
|
+
clitt/core/tui/line_input/__init__.py,sha256=kzJR03kjPj6DVC0rXClQb0Zn036QATHHg3WkGgGYxbs,204
|
|
59
|
+
clitt/core/tui/line_input/keyboard_input.py,sha256=9DOy68JutqwEoQdZyOuMFu6rvZbEIzQ02cpzqO8inMc,14490
|
|
60
|
+
clitt/core/tui/line_input/line_input.py,sha256=OIqkSBA1vlnReaLg5dxs_nXHofBdAYDRktxiAkL69gg,1479
|
|
61
|
+
clitt/core/tui/mchoose/__init__.py,sha256=-Zutnzjet1hCd3WXBLuMeyyfWtqihn1lfeadS9uK0WU,195
|
|
62
62
|
clitt/core/tui/mchoose/mchoose.py,sha256=oyl6esUPgC3j0DrM31Pceb3TDcvprt-D2v8ncd02Asc,1283
|
|
63
63
|
clitt/core/tui/mchoose/menu_choose.py,sha256=IJJQKcfvHRSRI59txSDILHDHLgj3IPo18EJ1_LikAg4,7135
|
|
64
|
-
clitt/core/tui/mdashboard/__init__.py,sha256=
|
|
64
|
+
clitt/core/tui/mdashboard/__init__.py,sha256=WSB8o4UYpTfI_9oOes_36zDEmyxHXqG6lqt1AYE3vG0,253
|
|
65
65
|
clitt/core/tui/mdashboard/dashboard_builder.py,sha256=IU2GtrKUbtqkEZSfvCnxdRyodcEmTu5M02LFYOEv0sc,1659
|
|
66
66
|
clitt/core/tui/mdashboard/dashboard_item.py,sha256=KgVxz1oU2iBF5Fi-_ST4ySjBO42fj-DHZ0gO2CA7L8k,887
|
|
67
67
|
clitt/core/tui/mdashboard/mdashboard.py,sha256=UjPPXqTIuO245POzAKprhGo90T5YpvlAJ_lKkAFjWnc,891
|
|
68
68
|
clitt/core/tui/mdashboard/menu_dashboard.py,sha256=Npf-bXOQa_tTQ33RlfZ6TBse0gLfEzT2Yo8zKZ9YcQo,5611
|
|
69
|
-
clitt/core/tui/menu/__init__.py,sha256=
|
|
69
|
+
clitt/core/tui/menu/__init__.py,sha256=dpPlKEpveMsNLVv1Gr3eO5JMQNMK9lDFIA-UeZTYko0,286
|
|
70
70
|
clitt/core/tui/menu/tui_menu.py,sha256=I7uqGD3-028xnNq-rigA3SmS9TDynbF9BQf7qL_r_xk,3573
|
|
71
71
|
clitt/core/tui/menu/tui_menu_action.py,sha256=LC7ljC-d2g7LN6GeHEdZrGyuQUj8FApkeEW3JoRfxEk,1536
|
|
72
72
|
clitt/core/tui/menu/tui_menu_factory.py,sha256=b26JkaBnAAUN_3xQ6GjgRVvljnDBLNouhk9zwyAXpEY,4589
|
|
73
73
|
clitt/core/tui/menu/tui_menu_item.py,sha256=fNU7XC8-fPD7ggOncs5kMnHThiiK9nN_M_1FuvXoKq0,7441
|
|
74
74
|
clitt/core/tui/menu/tui_menu_ui.py,sha256=jND2IWumKooCDuRPzz37YcVOeU9ViL9ZlHoWRptTv4Y,3254
|
|
75
75
|
clitt/core/tui/menu/tui_menu_view.py,sha256=jX1p50dgKLU7JvJL5FJPzI_bLxWzZxjPXem3m9wf2MU,1921
|
|
76
|
-
clitt/core/tui/minput/__init__.py,sha256=
|
|
76
|
+
clitt/core/tui/minput/__init__.py,sha256=2c4xJtPR0kItfu3PeMEmF0wC9ZascyqlHAsd_1NJekQ,338
|
|
77
77
|
clitt/core/tui/minput/access_type.py,sha256=91d_Wxj41pLrv2xs6LDGrSvtYoVHPx5MreXGthN2BFo,637
|
|
78
78
|
clitt/core/tui/minput/field_builder.py,sha256=Zn-JzTHasHtftF_s6N-ljdhxlyLJwqSSeTtj0KPqLRU,4372
|
|
79
79
|
clitt/core/tui/minput/form_builder.py,sha256=xNU62G_g29CpOU5naghvfqaPfb6MlalPxTzJwGD6bXw,2866
|
|
@@ -83,15 +83,15 @@ clitt/core/tui/minput/input_validator.py,sha256=7Cof7ZDIjcl8ixrFALZIy6SCe3MZH4Sd
|
|
|
83
83
|
clitt/core/tui/minput/menu_input.py,sha256=IujdjQaM0QGFziXU5U63bnaZL8JXJw9atckaG3a9wfw,12724
|
|
84
84
|
clitt/core/tui/minput/minput.py,sha256=y_QdSrx0yGH34Iowx_qlqprbWydGmEuh6qDyGIDnqzY,1608
|
|
85
85
|
clitt/core/tui/minput/minput_utils.py,sha256=DgcJyo_NDBp3J5fuWfNzX8JOdSFaekBL-zZqCCPldWA,5266
|
|
86
|
-
clitt/core/tui/mselect/__init__.py,sha256=
|
|
86
|
+
clitt/core/tui/mselect/__init__.py,sha256=YEDZaeUfkOJEfYV0_F0fvDgefCsw5g_oqiZEugA-3WU,195
|
|
87
87
|
clitt/core/tui/mselect/menu_select.py,sha256=ltoyB3pEOBPRXrNKMxW6KbaAgcQNIb9y1ZnqyTNMeAc,6176
|
|
88
88
|
clitt/core/tui/mselect/mselect.py,sha256=_UagPoWdDxde5MZvcxoCwi4twpK_nMFxtwmLVG20Yxo,1115
|
|
89
|
-
clitt/core/tui/table/__init__.py,sha256=
|
|
89
|
+
clitt/core/tui/table/__init__.py,sha256=0k020qFru_nju4seD22_M0k_sWR9fNmoKJclhOzVkIU,200
|
|
90
90
|
clitt/core/tui/table/table_enums.py,sha256=9SoecnDrd_X9UmG9wA8mJsfyxtVdZm8LgmTZ51j2yY4,1281
|
|
91
91
|
clitt/core/tui/table/table_renderer.py,sha256=PR8HXYCHQdFs7JDQ-AInblV7HjwIEkRIGl28pdy8yeY,12799
|
|
92
|
-
clitt/utils/__init__.py,sha256=
|
|
92
|
+
clitt/utils/__init__.py,sha256=0lcAsSiHAv0gop9vyvpuKDmIv5CxHHpp--QZHnsWvdk,166
|
|
93
93
|
clitt/utils/git_utils.py,sha256=ZNmj_8zp0gDhH81CyJA_fQsqP5ejOFJPzieugGSPpZs,2288
|
|
94
|
-
hspylib_clitt-0.9.
|
|
95
|
-
hspylib_clitt-0.9.
|
|
96
|
-
hspylib_clitt-0.9.
|
|
97
|
-
hspylib_clitt-0.9.
|
|
94
|
+
hspylib_clitt-0.9.141.dist-info/METADATA,sha256=HAQf9g32hKNBTiC4Z3l4vdsenYvy7zyfuMQDDrW9dAI,13147
|
|
95
|
+
hspylib_clitt-0.9.141.dist-info/WHEEL,sha256=In9FTNxeP60KnTkGw7wk6mJPYd_dQSjEZmXdBdMCI-8,91
|
|
96
|
+
hspylib_clitt-0.9.141.dist-info/top_level.txt,sha256=4aPEfxPvYp14dwV0l6cjCd90nbDutt1Yr27ZqCunZLI,11
|
|
97
|
+
hspylib_clitt-0.9.141.dist-info/RECORD,,
|
|
File without changes
|