hspylib-clitt 0.9.126__py3-none-any.whl → 0.9.128__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/__classpath__.py +1 -1
- clitt/__init__.py +2 -2
- clitt/__main__.py +1 -1
- clitt/addons/__init__.py +2 -2
- clitt/addons/appman/__init__.py +2 -2
- clitt/addons/appman/appman.py +1 -1
- clitt/addons/appman/appman_enums.py +1 -1
- clitt/addons/appman/templates/__init__.py +2 -2
- clitt/addons/widman/__init__.py +2 -2
- clitt/addons/widman/widget.py +1 -1
- clitt/addons/widman/widget_entry.py +1 -1
- clitt/addons/widman/widgets/__init__.py +2 -2
- clitt/addons/widman/widgets/widget_free.py +1 -1
- clitt/addons/widman/widgets/widget_punch.py +1 -1
- clitt/addons/widman/widgets/widget_send_msg.py +1 -1
- clitt/addons/widman/widgets/widget_time_calc.py +1 -1
- clitt/addons/widman/widman.py +1 -1
- clitt/core/__init__.py +2 -2
- clitt/core/exception/__init__.py +2 -2
- clitt/core/exception/exceptions.py +1 -1
- clitt/core/icons/__init__.py +2 -2
- clitt/core/icons/emojis/__init__.py +2 -2
- clitt/core/icons/emojis/emojis.py +1 -1
- clitt/core/icons/emojis/face_smiling.py +1 -1
- clitt/core/icons/font_awesome/__init__.py +2 -2
- clitt/core/icons/font_awesome/app_icons.py +1 -1
- clitt/core/icons/font_awesome/awesome.py +1 -1
- clitt/core/icons/font_awesome/dashboard_icons.py +1 -1
- clitt/core/icons/font_awesome/form_icons.py +1 -1
- clitt/core/icons/font_awesome/game_icons.py +1 -1
- clitt/core/icons/font_awesome/nav_icons.py +1 -1
- clitt/core/icons/font_awesome/trickplay_icons.py +1 -1
- clitt/core/icons/font_awesome/widget_icons.py +1 -1
- clitt/core/preferences.py +1 -1
- clitt/core/term/__init__.py +2 -2
- clitt/core/term/commons.py +1 -1
- clitt/core/term/cursor.py +18 -8
- clitt/core/term/screen.py +1 -1
- clitt/core/term/terminal.py +8 -4
- clitt/core/tui/__init__.py +2 -2
- clitt/core/tui/line_input/__init__.py +2 -2
- clitt/core/tui/line_input/keyboard_input.py +122 -86
- clitt/core/tui/line_input/line_input.py +1 -1
- clitt/core/tui/mchoose/__init__.py +2 -2
- clitt/core/tui/mchoose/mchoose.py +1 -1
- clitt/core/tui/mchoose/menu_choose.py +1 -1
- clitt/core/tui/mdashboard/__init__.py +2 -2
- clitt/core/tui/mdashboard/dashboard_builder.py +1 -1
- clitt/core/tui/mdashboard/dashboard_item.py +1 -1
- clitt/core/tui/mdashboard/mdashboard.py +1 -1
- clitt/core/tui/mdashboard/menu_dashboard.py +1 -1
- clitt/core/tui/menu/__init__.py +2 -2
- clitt/core/tui/menu/tui_menu.py +1 -1
- clitt/core/tui/menu/tui_menu_action.py +1 -1
- clitt/core/tui/menu/tui_menu_factory.py +1 -1
- clitt/core/tui/menu/tui_menu_item.py +1 -1
- clitt/core/tui/menu/tui_menu_ui.py +1 -1
- clitt/core/tui/menu/tui_menu_view.py +1 -1
- clitt/core/tui/minput/__init__.py +2 -2
- clitt/core/tui/minput/access_type.py +1 -1
- clitt/core/tui/minput/field_builder.py +1 -1
- clitt/core/tui/minput/form_builder.py +1 -1
- clitt/core/tui/minput/form_field.py +1 -1
- clitt/core/tui/minput/input_type.py +1 -1
- clitt/core/tui/minput/input_validator.py +1 -1
- clitt/core/tui/minput/menu_input.py +1 -1
- clitt/core/tui/minput/minput.py +1 -1
- clitt/core/tui/minput/minput_utils.py +1 -1
- clitt/core/tui/mselect/__init__.py +2 -2
- clitt/core/tui/mselect/menu_select.py +1 -1
- clitt/core/tui/mselect/mselect.py +1 -1
- clitt/core/tui/table/__init__.py +2 -2
- clitt/core/tui/table/table_enums.py +1 -1
- clitt/core/tui/table/table_renderer.py +1 -1
- clitt/core/tui/tui_application.py +3 -3
- clitt/core/tui/tui_component.py +29 -19
- clitt/core/tui/tui_preferences.py +1 -1
- clitt/utils/__init__.py +2 -2
- {hspylib_clitt-0.9.126.dist-info → hspylib_clitt-0.9.128.dist-info}/METADATA +2 -2
- hspylib_clitt-0.9.128.dist-info/RECORD +97 -0
- {hspylib_clitt-0.9.126.dist-info → hspylib_clitt-0.9.128.dist-info}/WHEEL +1 -1
- hspylib_clitt-0.9.126.dist-info/RECORD +0 -97
- {hspylib_clitt-0.9.126.dist-info → hspylib_clitt-0.9.128.dist-info}/top_level.txt +0 -0
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.128
|
|
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.128'
|
|
@@ -6,7 +6,7 @@
|
|
|
6
6
|
@package: clitt.core.tui.table
|
|
7
7
|
@file: table_enums.py
|
|
8
8
|
@created: Tue, 4 Jul 2023
|
|
9
|
-
@author: <B>H</B>ugo <B>S</B>aporetti <B>J</B>unior
|
|
9
|
+
@author: <B>H</B>ugo <B>S</B>aporetti <B>J</B>unior
|
|
10
10
|
@site: https://github.com/yorevs/hspylib
|
|
11
11
|
@license: MIT - Please refer to <https://opensource.org/licenses/MIT>
|
|
12
12
|
|
|
@@ -6,7 +6,7 @@
|
|
|
6
6
|
@package: clitt.core.tui.table
|
|
7
7
|
@file: table_renderer.py
|
|
8
8
|
@created: Tue, 4 May 2021
|
|
9
|
-
@author: <B>H</B>ugo <B>S</B>aporetti <B>J</B>unior
|
|
9
|
+
@author: <B>H</B>ugo <B>S</B>aporetti <B>J</B>unior
|
|
10
10
|
@site: https://github.com/yorevs/hspylib
|
|
11
11
|
@license: MIT - Please refer to <https://opensource.org/licenses/MIT>
|
|
12
12
|
|
|
@@ -6,7 +6,7 @@
|
|
|
6
6
|
@package: clitt.core.tui
|
|
7
7
|
@file: tui_application.py
|
|
8
8
|
@created: Tue, 4 May 2021
|
|
9
|
-
@author: <B>H</B>ugo <B>S</B>aporetti <B>J</B>unior
|
|
9
|
+
@author: <B>H</B>ugo <B>S</B>aporetti <B>J</B>unior
|
|
10
10
|
@site: https://github.com/yorevs/hspylib
|
|
11
11
|
@license: MIT - Please refer to <https://opensource.org/licenses/MIT>
|
|
12
12
|
|
|
@@ -41,10 +41,10 @@ class TUIApplication(Application, metaclass=AbstractSingleton):
|
|
|
41
41
|
self._app_name = os.path.basename(sys.argv[0]) if name is None else name
|
|
42
42
|
|
|
43
43
|
def _setup_arguments(self) -> None:
|
|
44
|
-
|
|
44
|
+
...
|
|
45
45
|
|
|
46
46
|
def _main(self, *params, **kwargs) -> ExitStatus:
|
|
47
|
-
|
|
47
|
+
...
|
|
48
48
|
|
|
49
49
|
def _cleanup(self) -> None:
|
|
50
50
|
if screen.alternate and self._exit_code == ExitStatus.SUCCESS:
|
clitt/core/tui/tui_component.py
CHANGED
|
@@ -6,13 +6,16 @@
|
|
|
6
6
|
@package: clitt.core.tui
|
|
7
7
|
@file: tui_component.py
|
|
8
8
|
@created: Tue, 4 May 2021
|
|
9
|
-
@author: <B>H</B>ugo <B>S</B>aporetti <B>J</B>unior
|
|
9
|
+
@author: <B>H</B>ugo <B>S</B>aporetti <B>J</B>unior
|
|
10
10
|
@site: https://github.com/yorevs/hspylib
|
|
11
11
|
@license: MIT - Please refer to <https://opensource.org/licenses/MIT>
|
|
12
12
|
|
|
13
13
|
Copyright·(c)·2024,·HSPyLib
|
|
14
14
|
"""
|
|
15
|
-
|
|
15
|
+
import os
|
|
16
|
+
from abc import ABC
|
|
17
|
+
from typing import Any, Optional, TypeVar
|
|
18
|
+
|
|
16
19
|
from clitt.core.icons.font_awesome.awesome import Awesome
|
|
17
20
|
from clitt.core.term.commons import Direction
|
|
18
21
|
from clitt.core.term.cursor import Cursor
|
|
@@ -21,7 +24,6 @@ from clitt.core.term.terminal import Terminal
|
|
|
21
24
|
from clitt.core.tui.tui_preferences import TUIPreferences
|
|
22
25
|
from hspylib.core.tools.text_tools import elide_text
|
|
23
26
|
from hspylib.modules.cli.keyboard import Keyboard
|
|
24
|
-
from typing import Any, List, Optional, TypeVar
|
|
25
27
|
|
|
26
28
|
T = TypeVar("T", bound=Any)
|
|
27
29
|
|
|
@@ -63,15 +65,21 @@ class TUIComponent(ABC):
|
|
|
63
65
|
def columns(self) -> int:
|
|
64
66
|
return self.screen.columns
|
|
65
67
|
|
|
66
|
-
def _prepare_render(
|
|
68
|
+
def _prepare_render(
|
|
69
|
+
self,
|
|
70
|
+
auto_wrap: bool = False,
|
|
71
|
+
show_cursor: bool = False,
|
|
72
|
+
clear_screen: bool = True
|
|
73
|
+
) -> None:
|
|
67
74
|
"""Prepare the screen for renderization."""
|
|
68
75
|
self.screen.add_watcher(self.invalidate)
|
|
69
76
|
Terminal.set_auto_wrap(auto_wrap)
|
|
70
77
|
Terminal.set_show_cursor(show_cursor)
|
|
71
|
-
|
|
78
|
+
if clear_screen:
|
|
79
|
+
self.screen.clear()
|
|
72
80
|
self.cursor.save()
|
|
73
81
|
|
|
74
|
-
def _loop(self, break_keys:
|
|
82
|
+
def _loop(self, break_keys: list[Keyboard] = None, cleanup: bool = True) -> Keyboard:
|
|
75
83
|
"""Loop and wait for a keypress. Render the component if required."""
|
|
76
84
|
|
|
77
85
|
break_keys = break_keys or Keyboard.break_keys()
|
|
@@ -86,10 +94,11 @@ class TUIComponent(ABC):
|
|
|
86
94
|
# Navigation input
|
|
87
95
|
keypress = self.handle_keypress()
|
|
88
96
|
|
|
89
|
-
|
|
90
|
-
|
|
91
|
-
|
|
92
|
-
|
|
97
|
+
if cleanup:
|
|
98
|
+
self.cursor.end()
|
|
99
|
+
self.cursor.erase(Direction.DOWN)
|
|
100
|
+
self.cursor.reset_mode()
|
|
101
|
+
self.cursor.writeln(os.linesep)
|
|
93
102
|
|
|
94
103
|
return keypress
|
|
95
104
|
|
|
@@ -123,32 +132,33 @@ class TUIComponent(ABC):
|
|
|
123
132
|
|
|
124
133
|
return selector
|
|
125
134
|
|
|
126
|
-
def write(self, obj: Any) -> None:
|
|
135
|
+
def write(self, obj: Any = "", end: str = "", markdown: bool = False) -> None:
|
|
127
136
|
"""Write the string representation of the object to the screen."""
|
|
128
|
-
self.terminal.echo(obj, end=
|
|
137
|
+
self.terminal.echo(obj, end=end, markdown=markdown)
|
|
129
138
|
|
|
130
|
-
def writeln(self, obj: Any) -> None:
|
|
139
|
+
def writeln(self, obj: Any = "", markdown: bool = False) -> None:
|
|
131
140
|
"""Write the string representation of the object to the screen, appending a new line."""
|
|
132
|
-
self.terminal.echo(obj)
|
|
141
|
+
self.terminal.echo(obj, markdown=markdown)
|
|
133
142
|
|
|
134
143
|
def invalidate(self) -> None:
|
|
135
144
|
"""Invalidate current TUI renderization."""
|
|
136
145
|
self.screen.clear()
|
|
137
146
|
self.cursor.save()
|
|
147
|
+
self.cursor.track()
|
|
138
148
|
self.render()
|
|
139
149
|
|
|
140
|
-
|
|
141
|
-
def execute(self) -> Optional[T | List[T]]:
|
|
150
|
+
def execute(self) -> Optional[T | list[T]]:
|
|
142
151
|
"""Execute the main TUI component flow."""
|
|
152
|
+
...
|
|
143
153
|
|
|
144
|
-
@abstractmethod
|
|
145
154
|
def render(self) -> None:
|
|
146
155
|
"""Renders the TUI component."""
|
|
156
|
+
...
|
|
147
157
|
|
|
148
|
-
@abstractmethod
|
|
149
158
|
def navbar(self, **kwargs) -> str:
|
|
150
159
|
"""Get the TUI component's navigation bar (optional)."""
|
|
160
|
+
...
|
|
151
161
|
|
|
152
|
-
@abstractmethod
|
|
153
162
|
def handle_keypress(self) -> Keyboard:
|
|
154
163
|
"""Handle a keyboard press."""
|
|
164
|
+
...
|
|
@@ -6,7 +6,7 @@
|
|
|
6
6
|
@package: clitt.core.tui
|
|
7
7
|
@file: tui_preferences.py
|
|
8
8
|
@created: Tue, 4 May 2021
|
|
9
|
-
@author: <B>H</B>ugo <B>S</B>aporetti <B>J</B>unior
|
|
9
|
+
@author: <B>H</B>ugo <B>S</B>aporetti <B>J</B>unior
|
|
10
10
|
@site: https://github.com/yorevs/hspylib
|
|
11
11
|
@license: MIT - Please refer to <https://opensource.org/licenses/MIT>
|
|
12
12
|
|
clitt/utils/__init__.py
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
Metadata-Version: 2.1
|
|
2
2
|
Name: hspylib-clitt
|
|
3
|
-
Version: 0.9.
|
|
3
|
+
Version: 0.9.128
|
|
4
4
|
Summary: HsPyLib - CLI Terminal Tools
|
|
5
5
|
Home-page: https://github.com/yorevs/hspylib
|
|
6
6
|
Author: Hugo Saporetti Junior
|
|
@@ -40,7 +40,7 @@ Requires-Dist: emoji >=2.12.1
|
|
|
40
40
|
[](https://gitter.im/hspylib/community)
|
|
41
41
|
[](https://www.paypal.com/cgi-bin/webscr?cmd=_s-xclick&hosted_button_id=J5CDEFLF6M3H4)
|
|
42
42
|
[](LICENSE.md)
|
|
43
|
-
[](docs/CHANGELOG.md#unreleased)
|
|
44
44
|
[](https://github.com/yorevs/hspylib/actions/workflows/build-and-test.yml)
|
|
45
45
|
|
|
46
46
|
HsPyLib is not just a Python library; it's a gateway to elevating your programming experience to new heights. Built on
|
|
@@ -0,0 +1,97 @@
|
|
|
1
|
+
clitt/.version,sha256=zS8RbFHozJYPH22KqahZnGWGMPwyqvBv2UkxCUZ1WD8,8
|
|
2
|
+
clitt/__classpath__.py,sha256=S94uRWOt4GdJlnpFoBBDlaA6imnDOglyIBgWY6e9cTU,881
|
|
3
|
+
clitt/__init__.py,sha256=9OJRINQIopriCmGP-_q2ZMvPpfe7ayiY6mLSdsVJJLk,184
|
|
4
|
+
clitt/__main__.py,sha256=rmAQE7_25DwTCXEGIwaQ1fFEfaPSLmuWQAH4UTFh92U,5320
|
|
5
|
+
clitt/welcome.txt,sha256=z72ySJw-1VQHvWmd8pZ95P6t4zEkIWGbqTRT83P2hJw,169
|
|
6
|
+
clitt/addons/__init__.py,sha256=ilZoLmfA3Fyb_5hv5P-D9M12aIp8IAt3UglRDwtsk28,179
|
|
7
|
+
clitt/addons/appman/__init__.py,sha256=wXlayccAe1t42Um0b9AgemC_dYdcbeAV_S3dXoJHKLM,210
|
|
8
|
+
clitt/addons/appman/appman.py,sha256=c4-VqUullq0ZyJtQJ3etZsC-2Pa9gVc_RExA5HfhZMs,13153
|
|
9
|
+
clitt/addons/appman/appman_enums.py,sha256=p3ERhgc5iaJ_QmtRCwHHk9mzXQ_Ds1-s__vwYrwRVZY,871
|
|
10
|
+
clitt/addons/appman/templates/__init__.py,sha256=Ac-XdBiq7FCzRD3S1Wu52SV1gRZWidP2eptWYl7BTcc,173
|
|
11
|
+
clitt/addons/appman/templates/build.gradle.tpl,sha256=VQKs4r41xPr7P14PtQPt3alYCmNuXaGraaXbKB_FKkM,1817
|
|
12
|
+
clitt/addons/appman/templates/classpath.py.tpl,sha256=R60uLvVxeJ7nJCXCvav_9LAnDe5VOfJqWO-T1QAlwAc,397
|
|
13
|
+
clitt/addons/appman/templates/dependencies.hspd.tpl,sha256=bbVNU6XBm5QT28lvH7Bp_4nlXvoD-LwX5kGQ-CPhOEA,764
|
|
14
|
+
clitt/addons/appman/templates/gitignore.tpl,sha256=OLb8eoac2nnG1lvZL2l7J_3mc94i6xTuIfCV-J8aFSM,903
|
|
15
|
+
clitt/addons/appman/templates/main.py.tpl,sha256=bHvc8yrqn-8Ksm0vaBxufGaWwvsEd27DX8YPYULLDro,1506
|
|
16
|
+
clitt/addons/appman/templates/main_qt.py.tpl,sha256=1nlBCVjZZmIackSpBQwgWm6ygYQGpjodI9oHuLucw58,1043
|
|
17
|
+
clitt/addons/appman/templates/main_qt_view.py.tpl,sha256=Rc42G1v0YV_0xRW4aERWnuAqsY_8zxjfFUGFqj0zu4w,620
|
|
18
|
+
clitt/addons/appman/templates/main_qt_view.ui.tpl,sha256=JbEz9xU_50_Fd8FCKC33WPCz4De0egg1eW2xvP8wzJI,2780
|
|
19
|
+
clitt/addons/appman/templates/run.sh.tpl,sha256=2xpuHjZP9-7j14dAA2CqPm4G2xtnuenf-RBe3LdC2rI,150
|
|
20
|
+
clitt/addons/appman/templates/test_main.py.tpl,sha256=y5Bo0ku6FP67WjHfYUF4Kt9tdQ67MSlN6LgoF_NUm-U,1241
|
|
21
|
+
clitt/addons/appman/templates/usage.txt.tpl,sha256=R0e48HCeD7PDbWnX6HGIjz6gr_hBdp-zK6V42U1Aexw,217
|
|
22
|
+
clitt/addons/appman/templates/widget.py.tpl,sha256=-4q8hYP1Xdx8ttexeHuFnjMH_DoBANEoN9f59jzHDR4,1670
|
|
23
|
+
clitt/addons/widman/__init__.py,sha256=byfMGgH7aR6vnj0i_B0etH7944OjJkGN2MhGnvPqYOs,223
|
|
24
|
+
clitt/addons/widman/widget.py,sha256=nQZCbUy-G0lpO4PMepSeTmJTECJgNY4bp2prQ5zzYlY,1919
|
|
25
|
+
clitt/addons/widman/widget_entry.py,sha256=KHYX_pL7ZNg3rtlG_GvypqPIPBqVzDljO5PhpcQw1JU,1357
|
|
26
|
+
clitt/addons/widman/widman.py,sha256=gxynZZiq9T2UPFp4x0V0i3Yk-XDDGQ3R-BbM02Z9O3E,5273
|
|
27
|
+
clitt/addons/widman/widgets/__init__.py,sha256=b-Ysp0qUu6XpGm_F3_BgNKQAc5CqebmNKs2n1piW-fo,254
|
|
28
|
+
clitt/addons/widman/widgets/widget_free.py,sha256=s43aIRc_mlIvz4M2pGJOHE2qt3MDD_KXKGJht-7WMPY,3994
|
|
29
|
+
clitt/addons/widman/widgets/widget_punch.py,sha256=GQRJadedh_zxyhacH65FmKeIOQV2nMEBmahdEzhfB7c,10606
|
|
30
|
+
clitt/addons/widman/widgets/widget_send_msg.py,sha256=RqqD6ss7wJqw6vJzS5C9uqs3OhyOCXYb8d329_8O8hc,11057
|
|
31
|
+
clitt/addons/widman/widgets/widget_time_calc.py,sha256=fusZRgPqgSDhxNeiPK1vhul9Fz8PzIaj2cuxP-aFb5k,5036
|
|
32
|
+
clitt/core/__init__.py,sha256=Tdbes9UmZhUGtIQh0gnUa0KwvTtRocM-wUQR2TJ302s,224
|
|
33
|
+
clitt/core/preferences.py,sha256=cbWjL2yfE59-T1vzTsXCrrRRsBJ4LHLqqESTI-ujsDc,3141
|
|
34
|
+
clitt/core/exception/__init__.py,sha256=B0VJVotxCIyab-tLuQsfIrvrh5PdF4NBL7KPBh181Rw,176
|
|
35
|
+
clitt/core/exception/exceptions.py,sha256=vfKRGmGX32qQksrcrej4ncPCqCt9smmtJa0vc8FLkn4,477
|
|
36
|
+
clitt/core/icons/__init__.py,sha256=zCerLw7qp4FGURlnwIoWZt3xBqfzGpt1pm3JWVT9R1Y,189
|
|
37
|
+
clitt/core/icons/emojis/__init__.py,sha256=NrAaWHK-rzxLwn9eHEke9FWA3_g934busx32l2esk0w,196
|
|
38
|
+
clitt/core/icons/emojis/emojis.py,sha256=fBxVIPfGRwzbmx6yGsX7oIpngiVwuQkxrmd-oAkK64Y,1110
|
|
39
|
+
clitt/core/icons/emojis/face_smiling.py,sha256=2NvJoMQ2q2VFBv2J2JrVw5UjWz7b6Eqh8VgORhbAfcM,1270
|
|
40
|
+
clitt/core/icons/font_awesome/__init__.py,sha256=UyhktRd48eIgpyUyCo3EeC-dbB4liDjPhxr8b7P9QjQ,325
|
|
41
|
+
clitt/core/icons/font_awesome/app_icons.py,sha256=zlD_AnwmrD0LKkd2Ej9jGmQPEa2TYGguvPbgfBUxuzM,1701
|
|
42
|
+
clitt/core/icons/font_awesome/awesome.py,sha256=JyyobxTZ9VVa8y_S07iLvJZWbWA671esav1-p5PKZ9Y,2242
|
|
43
|
+
clitt/core/icons/font_awesome/dashboard_icons.py,sha256=hdUQD55819mrV7z0Y_rJI4WiqgrWExjl3ULFabIf8Kc,3121
|
|
44
|
+
clitt/core/icons/font_awesome/form_icons.py,sha256=4yC0rPnBHbT4aBihu6ph3UbsIFhfpxsgd5u6BRQFMYU,2399
|
|
45
|
+
clitt/core/icons/font_awesome/game_icons.py,sha256=IMb1kxsbZKGIVmw0-XR904kDHaqPJVDoo5qPybSN-g4,1949
|
|
46
|
+
clitt/core/icons/font_awesome/nav_icons.py,sha256=egiNnVot_diKYL5VFUI3sPTrBSt41F5iO-mpfPZKe20,1182
|
|
47
|
+
clitt/core/icons/font_awesome/trickplay_icons.py,sha256=mb_wXF3j3OhG_6CZyFbOltwwg-l_dyzmNg8OqAkOub8,1080
|
|
48
|
+
clitt/core/icons/font_awesome/widget_icons.py,sha256=y160guCrnRLHxUfKlMq6FS0zsTsJ-gcW1Vs-wnjIjKk,1025
|
|
49
|
+
clitt/core/term/__init__.py,sha256=tRAaRvRDHhoYJ6_qvjf534pf9oWo2f3SOmGnWuxb_X0,215
|
|
50
|
+
clitt/core/term/commons.py,sha256=1qRiSDRmaIuT6ivVFUiXd4CU35QJbrVzJvBI-FLwAbo,3122
|
|
51
|
+
clitt/core/term/cursor.py,sha256=99NbsU4qWSe29hc_QPLzxGE9JzfTyiDnVUm0GdzfQwk,6780
|
|
52
|
+
clitt/core/term/screen.py,sha256=V24gFKKgTj-aywpkeD1c5zc8cNb5EA4crvfW_bQAIlI,3328
|
|
53
|
+
clitt/core/term/terminal.py,sha256=mZwkXNzjqHSMXHVx2R5V-56EPE4U0W7YZwMLHLr-mjw,7962
|
|
54
|
+
clitt/core/tui/__init__.py,sha256=ljsXx4BW1CM3TSiBo6SMr2_u4SbbhOH9pi3hBMQVugg,333
|
|
55
|
+
clitt/core/tui/tui_application.py,sha256=V2HvUYzSRSDquoPnj21uIIcXMiz58sWiYA_s7XL2OXk,1650
|
|
56
|
+
clitt/core/tui/tui_component.py,sha256=f4G4Pya9Foc1mlE8sUYHKZ5caqL-R7hyGXu8SHAY8SE,5134
|
|
57
|
+
clitt/core/tui/tui_preferences.py,sha256=QnPLgSg51tQZVKN4p7EpYvzXA3DadOfTmhEKZ6-iWUA,3109
|
|
58
|
+
clitt/core/tui/line_input/__init__.py,sha256=g8Nx76IvhLqu3MRoCKCDPbZBGDuznav3ILI2yUnNABY,204
|
|
59
|
+
clitt/core/tui/line_input/keyboard_input.py,sha256=P5OHmhU-HReIDYllhHhlNGfkJEO0gXh16WPMtBMs4d8,11686
|
|
60
|
+
clitt/core/tui/line_input/line_input.py,sha256=eFGWTabP27WRakOmpdqrDhJ3DrX9n05EHKWyhtzp37g,1242
|
|
61
|
+
clitt/core/tui/mchoose/__init__.py,sha256=Xb1kxQqLTo_sOMy_RNibr3cDmMhg_raDMX-9T_icRF0,195
|
|
62
|
+
clitt/core/tui/mchoose/mchoose.py,sha256=oyl6esUPgC3j0DrM31Pceb3TDcvprt-D2v8ncd02Asc,1283
|
|
63
|
+
clitt/core/tui/mchoose/menu_choose.py,sha256=IJJQKcfvHRSRI59txSDILHDHLgj3IPo18EJ1_LikAg4,7135
|
|
64
|
+
clitt/core/tui/mdashboard/__init__.py,sha256=MjNyFIXhSaZ2M7-hOsENWEBcEQDWgXF0RawdjSWTZkw,253
|
|
65
|
+
clitt/core/tui/mdashboard/dashboard_builder.py,sha256=IU2GtrKUbtqkEZSfvCnxdRyodcEmTu5M02LFYOEv0sc,1659
|
|
66
|
+
clitt/core/tui/mdashboard/dashboard_item.py,sha256=KgVxz1oU2iBF5Fi-_ST4ySjBO42fj-DHZ0gO2CA7L8k,887
|
|
67
|
+
clitt/core/tui/mdashboard/mdashboard.py,sha256=UjPPXqTIuO245POzAKprhGo90T5YpvlAJ_lKkAFjWnc,891
|
|
68
|
+
clitt/core/tui/mdashboard/menu_dashboard.py,sha256=Npf-bXOQa_tTQ33RlfZ6TBse0gLfEzT2Yo8zKZ9YcQo,5611
|
|
69
|
+
clitt/core/tui/menu/__init__.py,sha256=78nKek_1_B1mfN-2JoVCAUlEoQ5wgHazgbwhNGPAiPw,286
|
|
70
|
+
clitt/core/tui/menu/tui_menu.py,sha256=I7uqGD3-028xnNq-rigA3SmS9TDynbF9BQf7qL_r_xk,3573
|
|
71
|
+
clitt/core/tui/menu/tui_menu_action.py,sha256=LC7ljC-d2g7LN6GeHEdZrGyuQUj8FApkeEW3JoRfxEk,1536
|
|
72
|
+
clitt/core/tui/menu/tui_menu_factory.py,sha256=b26JkaBnAAUN_3xQ6GjgRVvljnDBLNouhk9zwyAXpEY,4589
|
|
73
|
+
clitt/core/tui/menu/tui_menu_item.py,sha256=fNU7XC8-fPD7ggOncs5kMnHThiiK9nN_M_1FuvXoKq0,7441
|
|
74
|
+
clitt/core/tui/menu/tui_menu_ui.py,sha256=jND2IWumKooCDuRPzz37YcVOeU9ViL9ZlHoWRptTv4Y,3254
|
|
75
|
+
clitt/core/tui/menu/tui_menu_view.py,sha256=jX1p50dgKLU7JvJL5FJPzI_bLxWzZxjPXem3m9wf2MU,1921
|
|
76
|
+
clitt/core/tui/minput/__init__.py,sha256=gJK23gKlhDTkIzEXUafAD-Sco8KGcrUl4vJL4ioZ6yE,338
|
|
77
|
+
clitt/core/tui/minput/access_type.py,sha256=91d_Wxj41pLrv2xs6LDGrSvtYoVHPx5MreXGthN2BFo,637
|
|
78
|
+
clitt/core/tui/minput/field_builder.py,sha256=Zn-JzTHasHtftF_s6N-ljdhxlyLJwqSSeTtj0KPqLRU,4372
|
|
79
|
+
clitt/core/tui/minput/form_builder.py,sha256=xNU62G_g29CpOU5naghvfqaPfb6MlalPxTzJwGD6bXw,2866
|
|
80
|
+
clitt/core/tui/minput/form_field.py,sha256=SiW6CUhPPL9MtARqJWTp73fXjLepCPMTmsx6SKKvkvE,6053
|
|
81
|
+
clitt/core/tui/minput/input_type.py,sha256=R7XkFQ0ghiGn58osLCgIM1vZOUDVJYJChqwd88qFhMI,723
|
|
82
|
+
clitt/core/tui/minput/input_validator.py,sha256=7Cof7ZDIjcl8ixrFALZIy6SCe3MZH4Sd8xvY24kOyxM,3145
|
|
83
|
+
clitt/core/tui/minput/menu_input.py,sha256=IujdjQaM0QGFziXU5U63bnaZL8JXJw9atckaG3a9wfw,12724
|
|
84
|
+
clitt/core/tui/minput/minput.py,sha256=y_QdSrx0yGH34Iowx_qlqprbWydGmEuh6qDyGIDnqzY,1608
|
|
85
|
+
clitt/core/tui/minput/minput_utils.py,sha256=DgcJyo_NDBp3J5fuWfNzX8JOdSFaekBL-zZqCCPldWA,5266
|
|
86
|
+
clitt/core/tui/mselect/__init__.py,sha256=fDiPllenssuSQ3yNu21QZX2PhihNhSDVw53HP70atNY,195
|
|
87
|
+
clitt/core/tui/mselect/menu_select.py,sha256=ltoyB3pEOBPRXrNKMxW6KbaAgcQNIb9y1ZnqyTNMeAc,6176
|
|
88
|
+
clitt/core/tui/mselect/mselect.py,sha256=_UagPoWdDxde5MZvcxoCwi4twpK_nMFxtwmLVG20Yxo,1115
|
|
89
|
+
clitt/core/tui/table/__init__.py,sha256=djzG7Kpr4wPuKk0u5ZPv6HfZbOc1GNSu28s5Hdsn2HQ,200
|
|
90
|
+
clitt/core/tui/table/table_enums.py,sha256=9SoecnDrd_X9UmG9wA8mJsfyxtVdZm8LgmTZ51j2yY4,1281
|
|
91
|
+
clitt/core/tui/table/table_renderer.py,sha256=PR8HXYCHQdFs7JDQ-AInblV7HjwIEkRIGl28pdy8yeY,12799
|
|
92
|
+
clitt/utils/__init__.py,sha256=Ma0-N9Y64WPHfbLA4PrZy_YgJXSZdrJQfr0yaEOVPhE,166
|
|
93
|
+
clitt/utils/git_utils.py,sha256=B-QZtRpxAXa3Cw3im5qhJTla0LrlWQouMq_-GR8SOHU,2392
|
|
94
|
+
hspylib_clitt-0.9.128.dist-info/METADATA,sha256=KU9DLFaEhDsZET4YunWDcqiGXPi_dMxPuVovQ4fBz74,13061
|
|
95
|
+
hspylib_clitt-0.9.128.dist-info/WHEEL,sha256=HiCZjzuy6Dw0hdX5R3LCFPDmFS4BWl8H-8W39XfmgX4,91
|
|
96
|
+
hspylib_clitt-0.9.128.dist-info/top_level.txt,sha256=4aPEfxPvYp14dwV0l6cjCd90nbDutt1Yr27ZqCunZLI,11
|
|
97
|
+
hspylib_clitt-0.9.128.dist-info/RECORD,,
|
|
@@ -1,97 +0,0 @@
|
|
|
1
|
-
clitt/.version,sha256=z416KA3ye-vhRChnaTvNmOmx3VSB9y16GBEqujM6HrU,8
|
|
2
|
-
clitt/__classpath__.py,sha256=_woVRfXoFlEHBbtg-we43FJOrIlvdyumxsUV2IloHhE,884
|
|
3
|
-
clitt/__init__.py,sha256=tP1IScxT5IvEImd45-dhfNoJAPEo8qFxnXpZ5kRPe7U,184
|
|
4
|
-
clitt/__main__.py,sha256=43Ugh79L57yhShIvtVqQwrQvsLy2rOtYgVm6g9Nsz_o,5321
|
|
5
|
-
clitt/welcome.txt,sha256=z72ySJw-1VQHvWmd8pZ95P6t4zEkIWGbqTRT83P2hJw,169
|
|
6
|
-
clitt/addons/__init__.py,sha256=Fzyu9pZLW-rzkPTXRGpzFHdLXzfFRmyYNJxwzr7nco0,179
|
|
7
|
-
clitt/addons/appman/__init__.py,sha256=ITgyFVUjDndqMxMsqXBPQljBMPV7S0hLQCmJF6q-Ev8,210
|
|
8
|
-
clitt/addons/appman/appman.py,sha256=m3cUZzeNuZtky6U26q5way7xMNcLxKeQEdfpGXzboL8,13154
|
|
9
|
-
clitt/addons/appman/appman_enums.py,sha256=DL99b1gQXdTF-u0VkyknMQDqROHomzN4J570B1NYbqs,874
|
|
10
|
-
clitt/addons/appman/templates/__init__.py,sha256=oRKb5IC_gIVsgaB91OO-yep8bgYqeyjI-51wypkIA90,173
|
|
11
|
-
clitt/addons/appman/templates/build.gradle.tpl,sha256=VQKs4r41xPr7P14PtQPt3alYCmNuXaGraaXbKB_FKkM,1817
|
|
12
|
-
clitt/addons/appman/templates/classpath.py.tpl,sha256=R60uLvVxeJ7nJCXCvav_9LAnDe5VOfJqWO-T1QAlwAc,397
|
|
13
|
-
clitt/addons/appman/templates/dependencies.hspd.tpl,sha256=bbVNU6XBm5QT28lvH7Bp_4nlXvoD-LwX5kGQ-CPhOEA,764
|
|
14
|
-
clitt/addons/appman/templates/gitignore.tpl,sha256=OLb8eoac2nnG1lvZL2l7J_3mc94i6xTuIfCV-J8aFSM,903
|
|
15
|
-
clitt/addons/appman/templates/main.py.tpl,sha256=bHvc8yrqn-8Ksm0vaBxufGaWwvsEd27DX8YPYULLDro,1506
|
|
16
|
-
clitt/addons/appman/templates/main_qt.py.tpl,sha256=1nlBCVjZZmIackSpBQwgWm6ygYQGpjodI9oHuLucw58,1043
|
|
17
|
-
clitt/addons/appman/templates/main_qt_view.py.tpl,sha256=Rc42G1v0YV_0xRW4aERWnuAqsY_8zxjfFUGFqj0zu4w,620
|
|
18
|
-
clitt/addons/appman/templates/main_qt_view.ui.tpl,sha256=JbEz9xU_50_Fd8FCKC33WPCz4De0egg1eW2xvP8wzJI,2780
|
|
19
|
-
clitt/addons/appman/templates/run.sh.tpl,sha256=2xpuHjZP9-7j14dAA2CqPm4G2xtnuenf-RBe3LdC2rI,150
|
|
20
|
-
clitt/addons/appman/templates/test_main.py.tpl,sha256=y5Bo0ku6FP67WjHfYUF4Kt9tdQ67MSlN6LgoF_NUm-U,1241
|
|
21
|
-
clitt/addons/appman/templates/usage.txt.tpl,sha256=R0e48HCeD7PDbWnX6HGIjz6gr_hBdp-zK6V42U1Aexw,217
|
|
22
|
-
clitt/addons/appman/templates/widget.py.tpl,sha256=-4q8hYP1Xdx8ttexeHuFnjMH_DoBANEoN9f59jzHDR4,1670
|
|
23
|
-
clitt/addons/widman/__init__.py,sha256=mxh09r-UWB3-0_MtLAkcKhAjVY7f2mlpq2YMH9mp8dE,223
|
|
24
|
-
clitt/addons/widman/widget.py,sha256=mOTpd1O3Cf37Ulz_nKSw9sU_gkE5X6wD28mIupOfVSM,1922
|
|
25
|
-
clitt/addons/widman/widget_entry.py,sha256=jFvfV2xX_0-Qdj3dDp_UdDtWoy5YkJr0x84X629_iGY,1358
|
|
26
|
-
clitt/addons/widman/widman.py,sha256=-PGBiWHxK7YJE632DRXisrUumVKES8U_Pemb_7xsFGM,5274
|
|
27
|
-
clitt/addons/widman/widgets/__init__.py,sha256=QrwOw2wmnO_Q8WI6tdtoO0pBqaMohFb3xozeEzI37pQ,254
|
|
28
|
-
clitt/addons/widman/widgets/widget_free.py,sha256=z_4-1cZG0l_LUEDvtjU5dLbCG2XzqD_Rnw49T45_awc,3995
|
|
29
|
-
clitt/addons/widman/widgets/widget_punch.py,sha256=L8nIrQGtMsEOr6o3t2-BlSBhca3rB0b_hKuYQrYyeTU,10607
|
|
30
|
-
clitt/addons/widman/widgets/widget_send_msg.py,sha256=SjK3w36uvsVoOeVs5JiKmlqO9GhQn5dYvIqmbNdkFaQ,11058
|
|
31
|
-
clitt/addons/widman/widgets/widget_time_calc.py,sha256=kfwwDzp8E-4uE2jt3v_DIZA8RSbK9vQWVOqqTpOvYYo,5037
|
|
32
|
-
clitt/core/__init__.py,sha256=km1XcbWzctT6ksbG5b8p3nklCDT4qAC5A_OhoCWMQqc,224
|
|
33
|
-
clitt/core/preferences.py,sha256=-A5fewJQY0rOqUIrlNKycdW5rpf60-GniHUE03jNWgY,3142
|
|
34
|
-
clitt/core/exception/__init__.py,sha256=BgldD8E71YPYFdVhmRgoJ13nGZiSNn-o6tLH54DK92A,176
|
|
35
|
-
clitt/core/exception/exceptions.py,sha256=WBY5vDokKkrrdc4UjJZdEhxzdYjtFo-HuAx3EmXwanA,478
|
|
36
|
-
clitt/core/icons/__init__.py,sha256=VxsJQoVYlVQH3rNYXSyALnuUPnLWIuSKxeKyHrQaSOM,189
|
|
37
|
-
clitt/core/icons/emojis/__init__.py,sha256=sgtS3OYwx5juMJgpEC__LgqvGsKa2-sEHjubu-3aEy8,196
|
|
38
|
-
clitt/core/icons/emojis/emojis.py,sha256=pNh3lEk-dNZlDS8hReK4FMyZq0Pz9zU1BXT-C2QyNno,1111
|
|
39
|
-
clitt/core/icons/emojis/face_smiling.py,sha256=rpMozq6ahAh6sw-7xVOUL3-ViIZsquamDrdvvwUtacU,1271
|
|
40
|
-
clitt/core/icons/font_awesome/__init__.py,sha256=7cu6PdWaLq03gHhWmdVUcVb7CMvPaBEBOHMKdc0HnS0,325
|
|
41
|
-
clitt/core/icons/font_awesome/app_icons.py,sha256=6Voo5dDbyeYN8ZLawm6jUQwq62Cfe669bQ1HOtAYB4A,1702
|
|
42
|
-
clitt/core/icons/font_awesome/awesome.py,sha256=sR7H2U2TQSDf9ZtmRsU5EOef-gYboEmsob1TG3VYRQE,2243
|
|
43
|
-
clitt/core/icons/font_awesome/dashboard_icons.py,sha256=iaAHme-DBlcvER5-R33w80x5vOOBDvebp332B6ql5zA,3122
|
|
44
|
-
clitt/core/icons/font_awesome/form_icons.py,sha256=E7xEN7B7Mj6mYZ6XM5kjSqHC8QutT_aw_Eag7fvctOQ,2400
|
|
45
|
-
clitt/core/icons/font_awesome/game_icons.py,sha256=veZuoz3Dz7ubzH3hoAoNzD9WLkuSuQtta5oPR0EinP8,1950
|
|
46
|
-
clitt/core/icons/font_awesome/nav_icons.py,sha256=D75lokoZUHAIH4WLb0Xj0DWvGLoOoXTNKpteQpL4iPk,1183
|
|
47
|
-
clitt/core/icons/font_awesome/trickplay_icons.py,sha256=NGItIGhqYBamyxNT5kJmqV1jjrD5rXPT-DRsy3jKwCE,1081
|
|
48
|
-
clitt/core/icons/font_awesome/widget_icons.py,sha256=YO3eMOjAeBszLNkH998G0rMjTuUfJ3t3t3T_KqYOeQc,1026
|
|
49
|
-
clitt/core/term/__init__.py,sha256=SvjlyhWLRKTtsC6N5JCWef3bDfewdeOrqm3SpN-WYxA,215
|
|
50
|
-
clitt/core/term/commons.py,sha256=_zcX6_Bzo9gnFexik1-ETggMGixgAFS6lPfGWUyLfVs,3125
|
|
51
|
-
clitt/core/term/cursor.py,sha256=OC3j24mrKsz73lD6zmwec9ICdxIxfpWGBr96pzupmnk,6326
|
|
52
|
-
clitt/core/term/screen.py,sha256=1lj8iwoko741favNBik9Ue6K-OCe2nrv2mprs_c9YRo,3331
|
|
53
|
-
clitt/core/term/terminal.py,sha256=NBdant1M4SbwVddA2CNtLt-6gw00-XNgMUSWSX0j5GE,7724
|
|
54
|
-
clitt/core/tui/__init__.py,sha256=wiAbM68qlPOp0hUEuBge3npy5-AHW_U_MiDmfF61UOo,333
|
|
55
|
-
clitt/core/tui/tui_application.py,sha256=jD2_RbiUAnWtEOC6NndniFziHrhguIHx4i9T1_PuYgo,1653
|
|
56
|
-
clitt/core/tui/tui_component.py,sha256=qIeGF_Dog6JuKYIaYy4sRDTDz3ai8WHSturYuh5Iy7w,4880
|
|
57
|
-
clitt/core/tui/tui_preferences.py,sha256=7GbnlhjbSQjzwixbMb4HHX913dpJCPnMaryLdY7TJuI,3110
|
|
58
|
-
clitt/core/tui/line_input/__init__.py,sha256=Jpof6CibvLByMfnDtNyBOj78reKYkKA1O6W2u3FgjRM,204
|
|
59
|
-
clitt/core/tui/line_input/keyboard_input.py,sha256=JERE00kwJQb92_C3yK6A4NsH0Xh1GGPQSEUj1i6uV9I,10971
|
|
60
|
-
clitt/core/tui/line_input/line_input.py,sha256=L3G1UcZii-kzfBof37B9f4qIkb_yNSipdrTzLAI9ico,1243
|
|
61
|
-
clitt/core/tui/mchoose/__init__.py,sha256=HVUFx-A7B5dTu-3_1OoJ6W1FMfmvfQo7VjTbSh7GQpU,195
|
|
62
|
-
clitt/core/tui/mchoose/mchoose.py,sha256=iqfyRYKLAslfFsQuZnra0lcMfx2GjZ8r4KuQrPSzAf0,1284
|
|
63
|
-
clitt/core/tui/mchoose/menu_choose.py,sha256=4kRvZCFpQxFPskUS7LcpPg4FgneKxnMe8z9DLzRsqMg,7136
|
|
64
|
-
clitt/core/tui/mdashboard/__init__.py,sha256=TgmOjcpLC4HemsgWwEdHdOQXLJQh0OJm2HCR-sDZBtQ,253
|
|
65
|
-
clitt/core/tui/mdashboard/dashboard_builder.py,sha256=RJm_XnrNJX8jE-G_a9dFEa3DDWLNxN2Xnc6HVvQV1FE,1660
|
|
66
|
-
clitt/core/tui/mdashboard/dashboard_item.py,sha256=AhQm1IAj4RlHhj9AH4CHEIqX4SjrOZsGEUkwqiUs3js,888
|
|
67
|
-
clitt/core/tui/mdashboard/mdashboard.py,sha256=VWzNw_bQf8sQGRXrIqvNdIxauOmYiZ_ZnX0PTr0i5-M,892
|
|
68
|
-
clitt/core/tui/mdashboard/menu_dashboard.py,sha256=GxJnq_AeZJmNySoLUX3wSSfPYW3B5ip3tI4zSFNo1KQ,5612
|
|
69
|
-
clitt/core/tui/menu/__init__.py,sha256=EIFP-Zu8ATy5E3mViCP669BhTMkgKP_aOF_TPAzsXMU,286
|
|
70
|
-
clitt/core/tui/menu/tui_menu.py,sha256=Yro2ug3MSRWA9mJiqq3Jm2FCRVZI-gc_YyxX0Fc4g4g,3574
|
|
71
|
-
clitt/core/tui/menu/tui_menu_action.py,sha256=20ZfmIkKKuf_y_hBPUQRx_QPtjNvTxV-3ui9opn74Yo,1537
|
|
72
|
-
clitt/core/tui/menu/tui_menu_factory.py,sha256=tsQiYJqQdAZjs5aNxlXgwHT3EueSs9mbV4-Ec9HqtRM,4590
|
|
73
|
-
clitt/core/tui/menu/tui_menu_item.py,sha256=5IcDZ8MSy47WHlpTnDLty2fHjOr13CDvTGWsHU_briE,7442
|
|
74
|
-
clitt/core/tui/menu/tui_menu_ui.py,sha256=BdebIp3kmycTgrcPyDk20fS1kNQwqed_hQl7TiHx9Z4,3255
|
|
75
|
-
clitt/core/tui/menu/tui_menu_view.py,sha256=eGoaw_krAR5WQhqYu7fAnmuzz4ouYdWe8wUopBiZE1I,1922
|
|
76
|
-
clitt/core/tui/minput/__init__.py,sha256=Kb16_1Z4YpSdMMUL1r8M_1VY0iPjUojQHmpOaNGQT7Y,338
|
|
77
|
-
clitt/core/tui/minput/access_type.py,sha256=xNW-Qq0T4Je9WXG69BiTY2piFKCgAd87djam6zJeQ6Q,638
|
|
78
|
-
clitt/core/tui/minput/field_builder.py,sha256=TJEoZ2X1RH3uy0zaipL_yFfAy0j7rNU-PORPZvjqAfQ,4373
|
|
79
|
-
clitt/core/tui/minput/form_builder.py,sha256=XDKnDLz7UeYn9UHYCOrAFwjyR59BWnJ7XQVNdy4gf6w,2867
|
|
80
|
-
clitt/core/tui/minput/form_field.py,sha256=Q6QaGR2NV462zCfNUauzWlR_efHfH9-c0ewo_lGzbIw,6054
|
|
81
|
-
clitt/core/tui/minput/input_type.py,sha256=10TLjtlCrZctjXSFLohaXv715uaiz4P5liXb8kfM-qk,724
|
|
82
|
-
clitt/core/tui/minput/input_validator.py,sha256=v78x288OsB7tr17YEP8PCYdor2l_xasGb3zfMBfpvMM,3146
|
|
83
|
-
clitt/core/tui/minput/menu_input.py,sha256=5jPcKYfRl4F6AU1hoOWw8lHWWqQb2MUEwqLqP0ak3EM,12725
|
|
84
|
-
clitt/core/tui/minput/minput.py,sha256=qWG5ykYd5GU_50lANJ7egrCALvxh1aGVnq9JlJKsXdE,1609
|
|
85
|
-
clitt/core/tui/minput/minput_utils.py,sha256=J9iuX9lbw5RWKoEIkMMkRjfm0RcOpjZfEAQTeizwzMc,5267
|
|
86
|
-
clitt/core/tui/mselect/__init__.py,sha256=pjjGh6gzgZEbI68hH1jQlGXNrLT7jN3bZgmlzDYp0SI,195
|
|
87
|
-
clitt/core/tui/mselect/menu_select.py,sha256=BWodSGtjaU-5jBZ8AqEbWGBZ4M71is6GDsWHG3n-yl8,6177
|
|
88
|
-
clitt/core/tui/mselect/mselect.py,sha256=9O9-OKSNwCnZGYzvXhoLyT-2Ssoyg4x8N6REELdt0P8,1116
|
|
89
|
-
clitt/core/tui/table/__init__.py,sha256=8rP8A0XCBLCScEYXg7zzQyUKU5EMIZ1EcZUt6gd1LI4,200
|
|
90
|
-
clitt/core/tui/table/table_enums.py,sha256=bTIr5h8dWBUfVJTagdd2cxie6KyPJleTgcaS-t7ioX4,1282
|
|
91
|
-
clitt/core/tui/table/table_renderer.py,sha256=gzvXQ7GtE1gqsLsGCcUAidv-DnS8uRUm-ksjqkmoMQs,12800
|
|
92
|
-
clitt/utils/__init__.py,sha256=edAxpZcEyV050Pm4BSQVCu0-EwT-PetY5iw1zgjgu08,166
|
|
93
|
-
clitt/utils/git_utils.py,sha256=B-QZtRpxAXa3Cw3im5qhJTla0LrlWQouMq_-GR8SOHU,2392
|
|
94
|
-
hspylib_clitt-0.9.126.dist-info/METADATA,sha256=D_gVlV_wnbvXfHMlwXJmhqD7tQQdzkb6TJGvNmVHchM,13061
|
|
95
|
-
hspylib_clitt-0.9.126.dist-info/WHEEL,sha256=Z4pYXqR_rTB7OWNDYFOm1qRk0RX6GFP2o8LgvP453Hk,91
|
|
96
|
-
hspylib_clitt-0.9.126.dist-info/top_level.txt,sha256=4aPEfxPvYp14dwV0l6cjCd90nbDutt1Yr27ZqCunZLI,11
|
|
97
|
-
hspylib_clitt-0.9.126.dist-info/RECORD,,
|
|
File without changes
|