ae-shell 0.3.8__tar.gz → 0.3.9__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.
- {ae_shell-0.3.8/ae_shell.egg-info → ae_shell-0.3.9}/PKG-INFO +4 -4
- {ae_shell-0.3.8 → ae_shell-0.3.9}/README.md +3 -3
- {ae_shell-0.3.8 → ae_shell-0.3.9}/ae/shell.py +2 -1
- {ae_shell-0.3.8 → ae_shell-0.3.9/ae_shell.egg-info}/PKG-INFO +4 -4
- {ae_shell-0.3.8 → ae_shell-0.3.9}/setup.py +4 -4
- {ae_shell-0.3.8 → ae_shell-0.3.9}/LICENSE.md +0 -0
- {ae_shell-0.3.8 → ae_shell-0.3.9}/ae_shell.egg-info/SOURCES.txt +0 -0
- {ae_shell-0.3.8 → ae_shell-0.3.9}/ae_shell.egg-info/dependency_links.txt +0 -0
- {ae_shell-0.3.8 → ae_shell-0.3.9}/ae_shell.egg-info/requires.txt +0 -0
- {ae_shell-0.3.8 → ae_shell-0.3.9}/ae_shell.egg-info/top_level.txt +0 -0
- {ae_shell-0.3.8 → ae_shell-0.3.9}/ae_shell.egg-info/zip-safe +0 -0
- {ae_shell-0.3.8 → ae_shell-0.3.9}/pyproject.toml +0 -0
- {ae_shell-0.3.8 → ae_shell-0.3.9}/setup.cfg +0 -0
- {ae_shell-0.3.8 → ae_shell-0.3.9}/tests/test_shell.py +0 -0
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
Metadata-Version: 2.4
|
|
2
2
|
Name: ae_shell
|
|
3
|
-
Version: 0.3.
|
|
3
|
+
Version: 0.3.9
|
|
4
4
|
Summary: ae namespace module portion shell: shell execution and environment helpers
|
|
5
5
|
Home-page: https://gitlab.com/ae-group/ae_shell
|
|
6
6
|
Author: AndiEcker
|
|
@@ -65,13 +65,13 @@ Dynamic: summary
|
|
|
65
65
|
|
|
66
66
|
<!-- THIS FILE IS EXCLUSIVELY MAINTAINED by the project ae.ae v0.3.101 -->
|
|
67
67
|
<!-- THIS FILE IS EXCLUSIVELY MAINTAINED by the project aedev.namespace_root_tpls v0.3.22 -->
|
|
68
|
-
# shell 0.3.
|
|
68
|
+
# shell 0.3.9
|
|
69
69
|
|
|
70
70
|
[](
|
|
71
71
|
https://gitlab.com/ae-group/ae_shell)
|
|
72
72
|
[](
|
|
74
|
+
https://gitlab.com/ae-group/ae_shell/-/tree/release0.3.9)
|
|
75
75
|
[](
|
|
76
76
|
https://pypi.org/project/ae-shell/#history)
|
|
77
77
|
|
|
@@ -1,12 +1,12 @@
|
|
|
1
1
|
<!-- THIS FILE IS EXCLUSIVELY MAINTAINED by the project ae.ae v0.3.101 -->
|
|
2
2
|
<!-- THIS FILE IS EXCLUSIVELY MAINTAINED by the project aedev.namespace_root_tpls v0.3.22 -->
|
|
3
|
-
# shell 0.3.
|
|
3
|
+
# shell 0.3.9
|
|
4
4
|
|
|
5
5
|
[](
|
|
6
6
|
https://gitlab.com/ae-group/ae_shell)
|
|
7
7
|
[](
|
|
9
|
+
https://gitlab.com/ae-group/ae_shell/-/tree/release0.3.9)
|
|
10
10
|
[](
|
|
11
11
|
https://pypi.org/project/ae-shell/#history)
|
|
12
12
|
|
|
@@ -31,7 +31,7 @@ from ae.core import main_app_instance, AppBase
|
|
|
31
31
|
from ae.console import MAIN_SECTION_NAME, ConsoleApp # type: ignore
|
|
32
32
|
|
|
33
33
|
|
|
34
|
-
__version__ = '0.3.
|
|
34
|
+
__version__ = '0.3.9'
|
|
35
35
|
|
|
36
36
|
|
|
37
37
|
STDERR_BEG_MARKER = "vvv STDERR vvv" #: :paramref:`ae.shell.sh_exec.lines_output` begin stderr lines
|
|
@@ -174,6 +174,7 @@ def sh_exec(command_line: str, extra_args: Iterable[str] = (), console_input: st
|
|
|
174
174
|
args = command_line + " " + " ".join(extra_args) if shell else shlex.split(command_line) + list(extra_args)
|
|
175
175
|
ret_out = lines_output is not None # == isinstance(lines_output, list)
|
|
176
176
|
merge_err = bool(lines_output) # == -''- and len(lines_output) > 0
|
|
177
|
+
app_obj = app_obj or main_app_instance()
|
|
177
178
|
print_out = app_obj.po if app_obj else dummy_function if app_obj is UNSET else print
|
|
178
179
|
debug_out = app_obj.dpo if app_obj else dummy_function if app_obj is UNSET else print
|
|
179
180
|
debug_out(f" . executing at {os.getcwd()}: {mask_token(args)}")
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
Metadata-Version: 2.4
|
|
2
2
|
Name: ae_shell
|
|
3
|
-
Version: 0.3.
|
|
3
|
+
Version: 0.3.9
|
|
4
4
|
Summary: ae namespace module portion shell: shell execution and environment helpers
|
|
5
5
|
Home-page: https://gitlab.com/ae-group/ae_shell
|
|
6
6
|
Author: AndiEcker
|
|
@@ -65,13 +65,13 @@ Dynamic: summary
|
|
|
65
65
|
|
|
66
66
|
<!-- THIS FILE IS EXCLUSIVELY MAINTAINED by the project ae.ae v0.3.101 -->
|
|
67
67
|
<!-- THIS FILE IS EXCLUSIVELY MAINTAINED by the project aedev.namespace_root_tpls v0.3.22 -->
|
|
68
|
-
# shell 0.3.
|
|
68
|
+
# shell 0.3.9
|
|
69
69
|
|
|
70
70
|
[](
|
|
71
71
|
https://gitlab.com/ae-group/ae_shell)
|
|
72
72
|
[](
|
|
74
|
+
https://gitlab.com/ae-group/ae_shell/-/tree/release0.3.9)
|
|
75
75
|
[](
|
|
76
76
|
https://pypi.org/project/ae-shell/#history)
|
|
77
77
|
|
|
@@ -25,13 +25,13 @@ setup_kwargs = {
|
|
|
25
25
|
'license': 'GPL-3.0-or-later',
|
|
26
26
|
'long_description': ('<!-- THIS FILE IS EXCLUSIVELY MAINTAINED by the project ae.ae v0.3.101 -->\n'
|
|
27
27
|
'<!-- THIS FILE IS EXCLUSIVELY MAINTAINED by the project aedev.namespace_root_tpls v0.3.22 -->\n'
|
|
28
|
-
'# shell 0.3.
|
|
28
|
+
'# shell 0.3.9\n'
|
|
29
29
|
'\n'
|
|
30
30
|
'[](\n'
|
|
31
31
|
' https://gitlab.com/ae-group/ae_shell)\n'
|
|
32
32
|
'[](\n'
|
|
34
|
+
' https://gitlab.com/ae-group/ae_shell/-/tree/release0.3.9)\n'
|
|
35
35
|
'[](\n'
|
|
36
36
|
' https://pypi.org/project/ae-shell/#history)\n'
|
|
37
37
|
'\n'
|
|
@@ -108,7 +108,7 @@ setup_kwargs = {
|
|
|
108
108
|
'Source': 'https://ae.readthedocs.io/en/latest/_modules/ae/shell.html'},
|
|
109
109
|
'python_requires': '>=3.9',
|
|
110
110
|
'url': 'https://gitlab.com/ae-group/ae_shell',
|
|
111
|
-
'version': '0.3.
|
|
111
|
+
'version': '0.3.9',
|
|
112
112
|
'zip_safe': True,
|
|
113
113
|
}
|
|
114
114
|
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|