hspylib-clitt 0.9.128__py3-none-any.whl → 0.9.130__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 CHANGED
@@ -1 +1 @@
1
- 0.9.128
1
+ 0.9.130
clitt/__classpath__.py CHANGED
@@ -14,14 +14,14 @@
14
14
  """
15
15
 
16
16
  from hspylib.core.metaclass.classpath import Classpath
17
- from hspylib.core.tools.commons import get_path, run_dir
17
+ from hspylib.core.tools.commons import parent_path, root_dir
18
18
 
19
19
 
20
20
  class _Classpath(Classpath):
21
21
  """Provide a class to help locating user-defined classes, packages, sources and resources."""
22
22
 
23
23
  def __init__(self):
24
- super().__init__(get_path(__file__), get_path(run_dir()), (get_path(__file__) / "resources"))
24
+ super().__init__(parent_path(__file__), parent_path(root_dir()), (parent_path(__file__) / "resources"))
25
25
 
26
26
 
27
27
  # Instantiate the classpath singleton
clitt/__init__.py CHANGED
@@ -1,6 +1,6 @@
1
1
  # _*_ coding: utf-8 _*_
2
2
  #
3
- # hspylib-clitt v0.9.128
3
+ # hspylib-clitt v0.9.130
4
4
  #
5
5
  # Package: main.clitt
6
6
  """Package initialization."""
@@ -10,4 +10,4 @@ __all__ = [
10
10
  'core',
11
11
  'utils'
12
12
  ]
13
- __version__ = '0.9.128'
13
+ __version__ = '0.9.130'
clitt/__main__.py CHANGED
@@ -19,7 +19,7 @@ from clitt.addons.widman.widman import WidgetManager
19
19
  from clitt.core.tui.tui_application import TUIApplication
20
20
  from hspylib.core.enums.charset import Charset
21
21
  from hspylib.core.enums.enumeration import Enumeration
22
- from hspylib.core.tools.commons import run_dir, syserr
22
+ from hspylib.core.tools.commons import root_dir, syserr
23
23
  from hspylib.core.tools.text_tools import strip_linebreaks
24
24
  from hspylib.modules.application.exit_status import ExitStatus
25
25
  from hspylib.modules.application.version import Version
@@ -63,7 +63,7 @@ class Main(TUIApplication):
63
63
  .add_option(
64
64
  'dest-dir', 'd', 'dest-dir',
65
65
  'the destination directory. If omitted, the current directory will be used.',
66
- nargs='?', default=self._run_dir) \
66
+ nargs='?', default=self._root_dir) \
67
67
  .add_parameter(
68
68
  'app-name', 'the application name', nargs='?') \
69
69
  .add_parameter(
@@ -121,7 +121,7 @@ class Main(TUIApplication):
121
121
  self.get_arg("app-name"),
122
122
  AppType.of_value(app_type),
123
123
  list(map(AppExtension.value_of, app_ext)) if app_ext else [],
124
- self.get_arg("dest-dir") or run_dir(),
124
+ self.get_arg("dest-dir") or root_dir(),
125
125
  )
126
126
  else:
127
127
  args = addon.prompt()
@@ -131,7 +131,7 @@ class Main(TUIApplication):
131
131
  app_ext.append(AppExtension.GRADLE)
132
132
  if args.initialize_git:
133
133
  app_ext.append(AppExtension.GIT)
134
- addon.create(args.app_name, AppType.of_value(args.app_type), list(app_ext), args.dest_dir or run_dir())
134
+ addon.create(args.app_name, AppType.of_value(args.app_type), list(app_ext), args.dest_dir or root_dir())
135
135
 
136
136
 
137
137
  # Application entry point
clitt/addons/__init__.py CHANGED
@@ -1,6 +1,6 @@
1
1
  # _*_ coding: utf-8 _*_
2
2
  #
3
- # hspylib-clitt v0.9.128
3
+ # hspylib-clitt v0.9.130
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.128'
12
+ __version__ = '0.9.130'
@@ -1,6 +1,6 @@
1
1
  # _*_ coding: utf-8 _*_
2
2
  #
3
- # hspylib-clitt v0.9.128
3
+ # hspylib-clitt v0.9.130
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.128'
13
+ __version__ = '0.9.130'
@@ -21,7 +21,7 @@ from hspylib.core.enums.http_code import HttpCode
21
21
  from hspylib.core.metaclass.singleton import Singleton
22
22
  from hspylib.core.namespace import Namespace
23
23
  from hspylib.core.preconditions import check_argument
24
- from hspylib.core.tools.commons import get_path, syserr, sysout
24
+ from hspylib.core.tools.commons import parent_path, syserr, sysout
25
25
  from hspylib.core.tools.text_tools import camelcase, ensure_endswith
26
26
  from hspylib.modules.application.application import Application
27
27
  from hspylib.modules.application.exit_status import ExitStatus
@@ -34,7 +34,7 @@ import os
34
34
  import stat
35
35
  import urllib3
36
36
 
37
- HERE = get_path(__file__)
37
+ HERE = parent_path(__file__)
38
38
 
39
39
  INITIAL_REVISION = Version.initial()
40
40
 
@@ -1,6 +1,6 @@
1
1
  # _*_ coding: utf-8 _*_
2
2
  #
3
- # hspylib-clitt v0.9.128
3
+ # hspylib-clitt v0.9.130
4
4
  #
5
5
  # Package: main.clitt.addons.appman.templates
6
6
  """Package initialization."""
@@ -8,4 +8,4 @@
8
8
  __all__ = [
9
9
 
10
10
  ]
11
- __version__ = '0.9.128'
11
+ __version__ = '0.9.130'
@@ -1,6 +1,6 @@
1
1
  # _*_ coding: utf-8 _*_
2
2
  #
3
- # hspylib-clitt v0.9.128
3
+ # hspylib-clitt v0.9.130
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.128'
14
+ __version__ = '0.9.130'
@@ -1,6 +1,6 @@
1
1
  # _*_ coding: utf-8 _*_
2
2
  #
3
- # hspylib-clitt v0.9.128
3
+ # hspylib-clitt v0.9.130
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.128'
14
+ __version__ = '0.9.130'
@@ -19,7 +19,7 @@ from clitt.core.tui.mdashboard.mdashboard import mdashboard
19
19
  from hspylib.core.exception.exceptions import WidgetExecutionError, WidgetNotFoundError
20
20
  from hspylib.core.metaclass.singleton import Singleton
21
21
  from hspylib.core.preconditions import check_state
22
- from hspylib.core.tools.commons import get_path
22
+ from hspylib.core.tools.commons import parent_path
23
23
  from hspylib.core.tools.text_tools import camelcase
24
24
  from hspylib.modules.application.application import Application
25
25
  from hspylib.modules.application.exit_status import ExitStatus
@@ -28,7 +28,7 @@ import atexit
28
28
  import os
29
29
  import sys
30
30
 
31
- HERE = get_path(__file__)
31
+ HERE = parent_path(__file__)
32
32
 
33
33
 
34
34
  class WidgetManager(metaclass=Singleton):
clitt/core/__init__.py CHANGED
@@ -1,6 +1,6 @@
1
1
  # _*_ coding: utf-8 _*_
2
2
  #
3
- # hspylib-clitt v0.9.128
3
+ # hspylib-clitt v0.9.130
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.128'
15
+ __version__ = '0.9.130'
@@ -1,6 +1,6 @@
1
1
  # _*_ coding: utf-8 _*_
2
2
  #
3
- # hspylib-clitt v0.9.128
3
+ # hspylib-clitt v0.9.130
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.128'
11
+ __version__ = '0.9.130'
@@ -1,6 +1,6 @@
1
1
  # _*_ coding: utf-8 _*_
2
2
  #
3
- # hspylib-clitt v0.9.128
3
+ # hspylib-clitt v0.9.130
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.128'
12
+ __version__ = '0.9.130'
@@ -1,6 +1,6 @@
1
1
  # _*_ coding: utf-8 _*_
2
2
  #
3
- # hspylib-clitt v0.9.128
3
+ # hspylib-clitt v0.9.130
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.128'
12
+ __version__ = '0.9.130'
@@ -1,6 +1,6 @@
1
1
  # _*_ coding: utf-8 _*_
2
2
  #
3
- # hspylib-clitt v0.9.128
3
+ # hspylib-clitt v0.9.130
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.128'
18
+ __version__ = '0.9.130'
@@ -1,6 +1,6 @@
1
1
  # _*_ coding: utf-8 _*_
2
2
  #
3
- # hspylib-clitt v0.9.128
3
+ # hspylib-clitt v0.9.130
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.128'
14
+ __version__ = '0.9.130'
@@ -1,6 +1,6 @@
1
1
  # _*_ coding: utf-8 _*_
2
2
  #
3
- # hspylib-clitt v0.9.128
3
+ # hspylib-clitt v0.9.130
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.128'
20
+ __version__ = '0.9.130'
@@ -1,6 +1,6 @@
1
1
  # _*_ coding: utf-8 _*_
2
2
  #
3
- # hspylib-clitt v0.9.128
3
+ # hspylib-clitt v0.9.130
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.128'
12
+ __version__ = '0.9.130'
@@ -1,6 +1,6 @@
1
1
  # _*_ coding: utf-8 _*_
2
2
  #
3
- # hspylib-clitt v0.9.128
3
+ # hspylib-clitt v0.9.130
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.128'
12
+ __version__ = '0.9.130'
@@ -1,6 +1,6 @@
1
1
  # _*_ coding: utf-8 _*_
2
2
  #
3
- # hspylib-clitt v0.9.128
3
+ # hspylib-clitt v0.9.130
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.128'
14
+ __version__ = '0.9.130'
@@ -1,6 +1,6 @@
1
1
  # _*_ coding: utf-8 _*_
2
2
  #
3
- # hspylib-clitt v0.9.128
3
+ # hspylib-clitt v0.9.130
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.128'
16
+ __version__ = '0.9.130'
@@ -1,6 +1,6 @@
1
1
  # _*_ coding: utf-8 _*_
2
2
  #
3
- # hspylib-clitt v0.9.128
3
+ # hspylib-clitt v0.9.130
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.128'
19
+ __version__ = '0.9.130'
@@ -1,6 +1,6 @@
1
1
  # _*_ coding: utf-8 _*_
2
2
  #
3
- # hspylib-clitt v0.9.128
3
+ # hspylib-clitt v0.9.130
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.128'
12
+ __version__ = '0.9.130'
@@ -1,6 +1,6 @@
1
1
  # _*_ coding: utf-8 _*_
2
2
  #
3
- # hspylib-clitt v0.9.128
3
+ # hspylib-clitt v0.9.130
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.128'
12
+ __version__ = '0.9.130'
clitt/utils/__init__.py CHANGED
@@ -1,6 +1,6 @@
1
1
  # _*_ coding: utf-8 _*_
2
2
  #
3
- # hspylib-clitt v0.9.128
3
+ # hspylib-clitt v0.9.130
4
4
  #
5
5
  # Package: main.clitt.utils
6
6
  """Package initialization."""
@@ -8,4 +8,4 @@
8
8
  __all__ = [
9
9
  'git_utils'
10
10
  ]
11
- __version__ = '0.9.128'
11
+ __version__ = '0.9.130'
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.1
2
2
  Name: hspylib-clitt
3
- Version: 0.9.128
3
+ Version: 0.9.130
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
  [![Gitter](https://badgen.net/badge/icon/gitter?icon=gitter&label)](https://gitter.im/hspylib/community)
41
41
  [![Donate](https://badgen.net/badge/paypal/donate/yellow)](https://www.paypal.com/cgi-bin/webscr?cmd=_s-xclick&hosted_button_id=J5CDEFLF6M3H4)
42
42
  [![License](https://badgen.net/badge/license/MIT/gray)](LICENSE.md)
43
- [![Release](https://badgen.net/badge/release/v0.9.128/gray)](docs/CHANGELOG.md#unreleased)
43
+ [![Release](https://badgen.net/badge/release/v0.9.130/gray)](docs/CHANGELOG.md#unreleased)
44
44
  [![build-and-test](https://github.com/yorevs/hspylib/actions/workflows/build-and-test.yml/badge.svg)](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
@@ -249,7 +249,6 @@ if __name__ == "__main__":
249
249
 
250
250
  ## PyPi Modules
251
251
 
252
- - [A Pivotal Cloud Foundry](https://pypi.org/project/hspylib-cfman) application tool.
253
252
  - [A CLI Terminal](https://pypi.org/project/hspylib-clitt) tools.
254
253
  - [Datasource](https://pypi.org/project/hspylib-datasource) framework.
255
254
  - [A Firebase](https://pypi.org/project/hspylib-firebase) integration tool.
@@ -303,7 +302,6 @@ Additional modules that can also be installed:
303
302
  - [CLItt](https://pypi.org/project/hspylib-clitt) : `# python3 -m pip install hspylib-clitt` to install HsPyLib CLI terminal tools.
304
303
  - [Firebase](https://pypi.org/project/hspylib-firebase) : `# python3 -m pip install hspylib-firebase` to install HsPyLib Firebase application.
305
304
  - [Vault](https://pypi.org/project/hspylib-vault) : `# python3 -m pip install hspylib-vault` to install HsPyLib Vault application.
306
- - [CFMan](https://pypi.org/project/hspylib-cfman) : `# python3 -m pip install hspylib-cfman` to install CloudFoundry manager.
307
305
  - [Kafman](https://pypi.org/project/hspylib-kafman) : `# python3 -m pip install hspylib-kafman` to install Kafka manager.
308
306
  - [Datasource](https://pypi.org/project/hspylib-datasource) : `# python3 -m pip install hspylib-datasource` to install datasource helpers.
309
307
  - [HQT](https://pypi.org/project/hspylib-hqt) : `# python3 -m pip install hspylib-hqt` to install HsPyLib PyQt framework.
@@ -1,13 +1,13 @@
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
1
+ clitt/.version,sha256=Pu-yBkQuExVVhAkKD8Om0Qli_TIOSML_MJbUgIxL2b8,8
2
+ clitt/__classpath__.py,sha256=1gz4kuMB8HyS4oWdYhoYCWcEHFVsL6U27ZbhDKSGnjM,895
3
+ clitt/__init__.py,sha256=VHuiQZVTmDyTeEQmVBGIXNKpcEq2k83-ifYgWovmo6M,184
4
+ clitt/__main__.py,sha256=NM-StFZ_PlS_i-bOjgdz7yyavsw54EzzFHLDewGUpac,5324
5
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
6
+ clitt/addons/__init__.py,sha256=bn-Vkvc2nVo2e3htsQNZg4GYwXDrJb-jUg-WeBOJqis,179
7
+ clitt/addons/appman/__init__.py,sha256=kbrrGuAB8zO_DgATigbSDK_LGU3MsTBtbb30Ga-_T8Y,210
8
+ clitt/addons/appman/appman.py,sha256=IMXsjTX4VKNdql_OlFW1sAVm695-eYqSq9Gb3yVmXuU,13159
9
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
10
+ clitt/addons/appman/templates/__init__.py,sha256=xyKxVySH6Fs6_hU67F9LGWGjnRgJmogOowCTNm60yHo,173
11
11
  clitt/addons/appman/templates/build.gradle.tpl,sha256=VQKs4r41xPr7P14PtQPt3alYCmNuXaGraaXbKB_FKkM,1817
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=byfMGgH7aR6vnj0i_B0etH7944OjJkGN2MhGnvPqYOs,223
23
+ clitt/addons/widman/__init__.py,sha256=lkkkz9KSmxeVZ24-MI5BCvpeSQV9-KSJK0M_CuqzP1s,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
- clitt/addons/widman/widman.py,sha256=gxynZZiq9T2UPFp4x0V0i3Yk-XDDGQ3R-BbM02Z9O3E,5273
27
- clitt/addons/widman/widgets/__init__.py,sha256=b-Ysp0qUu6XpGm_F3_BgNKQAc5CqebmNKs2n1piW-fo,254
26
+ clitt/addons/widman/widman.py,sha256=yd2rSdg06ZqaU3c1EkhjtxLN9WJCbgGAjcccIHV0tgw,5279
27
+ clitt/addons/widman/widgets/__init__.py,sha256=xZA4uAcAiSi95b3Yl0cvIM10BKcZhTNNviFVNaEqETw,254
28
28
  clitt/addons/widman/widgets/widget_free.py,sha256=s43aIRc_mlIvz4M2pGJOHE2qt3MDD_KXKGJht-7WMPY,3994
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=Tdbes9UmZhUGtIQh0gnUa0KwvTtRocM-wUQR2TJ302s,224
32
+ clitt/core/__init__.py,sha256=5gR4eCgDuoINW3x6XdcrLUhAr5F2Wp_Ju1MoUmAnlWw,224
33
33
  clitt/core/preferences.py,sha256=cbWjL2yfE59-T1vzTsXCrrRRsBJ4LHLqqESTI-ujsDc,3141
34
- clitt/core/exception/__init__.py,sha256=B0VJVotxCIyab-tLuQsfIrvrh5PdF4NBL7KPBh181Rw,176
34
+ clitt/core/exception/__init__.py,sha256=dp11YI5FsBafnLG301l-omBE7r4nwFjZKcJnzbLtlBY,176
35
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
36
+ clitt/core/icons/__init__.py,sha256=atWAecAlBJetwr2o6AZkt_m02HQ7sC3rwVojySt7JgI,189
37
+ clitt/core/icons/emojis/__init__.py,sha256=8MVA8EjOSso559gB9R9k6l9XNpLcAHdpnH_ND8bQcwg,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=UyhktRd48eIgpyUyCo3EeC-dbB4liDjPhxr8b7P9QjQ,325
40
+ clitt/core/icons/font_awesome/__init__.py,sha256=enxa9ik_6yyQOfcM73q5exfiT5LcKK5nVJko9T9m9bg,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=IMb1kxsbZKGIVmw0-XR904kDHaqPJ
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=tRAaRvRDHhoYJ6_qvjf534pf9oWo2f3SOmGnWuxb_X0,215
49
+ clitt/core/term/__init__.py,sha256=-sDndH0JFB8xn2dtw06a4YItZ4KI6z69YrhwTuFuzb8,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=mZwkXNzjqHSMXHVx2R5V-56EPE4U0W7YZwMLHLr-mjw,7962
54
- clitt/core/tui/__init__.py,sha256=ljsXx4BW1CM3TSiBo6SMr2_u4SbbhOH9pi3hBMQVugg,333
54
+ clitt/core/tui/__init__.py,sha256=T8Is6mJMBlbDMSqez-sNfPVNV3kzlUcdXSajpu8-k-0,333
55
55
  clitt/core/tui/tui_application.py,sha256=V2HvUYzSRSDquoPnj21uIIcXMiz58sWiYA_s7XL2OXk,1650
56
56
  clitt/core/tui/tui_component.py,sha256=f4G4Pya9Foc1mlE8sUYHKZ5caqL-R7hyGXu8SHAY8SE,5134
57
57
  clitt/core/tui/tui_preferences.py,sha256=QnPLgSg51tQZVKN4p7EpYvzXA3DadOfTmhEKZ6-iWUA,3109
58
- clitt/core/tui/line_input/__init__.py,sha256=g8Nx76IvhLqu3MRoCKCDPbZBGDuznav3ILI2yUnNABY,204
58
+ clitt/core/tui/line_input/__init__.py,sha256=TYRux5G-ThuOH_4FuaLSkr8vx-AVc4hPmlW755lMU_8,204
59
59
  clitt/core/tui/line_input/keyboard_input.py,sha256=P5OHmhU-HReIDYllhHhlNGfkJEO0gXh16WPMtBMs4d8,11686
60
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
61
+ clitt/core/tui/mchoose/__init__.py,sha256=HT-5W36vkTLLOrLUX_8lc7uEyQUh1zqxG0yBU6GlP_M,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=MjNyFIXhSaZ2M7-hOsENWEBcEQDWgXF0RawdjSWTZkw,253
64
+ clitt/core/tui/mdashboard/__init__.py,sha256=R2yCsiKfXA2fZ6q6iJB1PVQVAlD50mwIxbQttYONQ_Y,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=78nKek_1_B1mfN-2JoVCAUlEoQ5wgHazgbwhNGPAiPw,286
69
+ clitt/core/tui/menu/__init__.py,sha256=Y3w5KNTfTAIlf7Yjebvfqb5pr-QEz1Tskbdf8yudP-4,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=gJK23gKlhDTkIzEXUafAD-Sco8KGcrUl4vJL4ioZ6yE,338
76
+ clitt/core/tui/minput/__init__.py,sha256=b5eJE4Tt7XxO1zSSEq5NsAD4Az-vU-Q3Dbsa-3TPFfg,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=fDiPllenssuSQ3yNu21QZX2PhihNhSDVw53HP70atNY,195
86
+ clitt/core/tui/mselect/__init__.py,sha256=gArBXtOVoWNFNBJZgVdpbug7sl_OrRiN2UKe3Vv49GE,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=djzG7Kpr4wPuKk0u5ZPv6HfZbOc1GNSu28s5Hdsn2HQ,200
89
+ clitt/core/tui/table/__init__.py,sha256=RKZ8Q7B4z4wd1M9x5wJe5piKb5Suj_Qe3KKv2hTeDqc,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=Ma0-N9Y64WPHfbLA4PrZy_YgJXSZdrJQfr0yaEOVPhE,166
92
+ clitt/utils/__init__.py,sha256=utG80sHOj6uSaNDjhml4dd182tACtX2v3ApHTtlKrn0,166
93
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,,
94
+ hspylib_clitt-0.9.130.dist-info/METADATA,sha256=vn8Zn8iOFBL77tdGV7R6HCIbuiUeM8GFSk6P0oQjCJE,12849
95
+ hspylib_clitt-0.9.130.dist-info/WHEEL,sha256=UvcQYKBHoFqaQd6LKyqHw9fxEolWLQnlzP0h_LgJAfI,91
96
+ hspylib_clitt-0.9.130.dist-info/top_level.txt,sha256=4aPEfxPvYp14dwV0l6cjCd90nbDutt1Yr27ZqCunZLI,11
97
+ hspylib_clitt-0.9.130.dist-info/RECORD,,
@@ -1,5 +1,5 @@
1
1
  Wheel-Version: 1.0
2
- Generator: setuptools (72.2.0)
2
+ Generator: setuptools (74.0.0)
3
3
  Root-Is-Purelib: true
4
4
  Tag: py3-none-any
5
5