dhis2w-cli 0.5.4__tar.gz → 0.5.6__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.
- {dhis2w_cli-0.5.4 → dhis2w_cli-0.5.6}/PKG-INFO +2 -2
- {dhis2w_cli-0.5.4 → dhis2w_cli-0.5.6}/pyproject.toml +2 -2
- {dhis2w_cli-0.5.4 → dhis2w_cli-0.5.6}/src/dhis2w_cli/main.py +2 -2
- {dhis2w_cli-0.5.4 → dhis2w_cli-0.5.6}/README.md +0 -0
- {dhis2w_cli-0.5.4 → dhis2w_cli-0.5.6}/src/dhis2w_cli/__init__.py +0 -0
- {dhis2w_cli-0.5.4 → dhis2w_cli-0.5.6}/src/dhis2w_cli/py.typed +0 -0
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
Metadata-Version: 2.3
|
|
2
2
|
Name: dhis2w-cli
|
|
3
|
-
Version: 0.5.
|
|
4
|
-
Summary: dhis2 command-line interface (Typer) — mounts plugins from
|
|
3
|
+
Version: 0.5.6
|
|
4
|
+
Summary: dhis2 command-line interface (Typer) — mounts plugins from dhis2w-core.
|
|
5
5
|
Author: Morten Hansen
|
|
6
6
|
Author-email: Morten Hansen <morten@winterop.com>
|
|
7
7
|
Requires-Dist: dhis2w-core>=0.5.0,<0.6
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
[project]
|
|
2
2
|
name = "dhis2w-cli"
|
|
3
|
-
version = "0.5.
|
|
4
|
-
description = "dhis2 command-line interface (Typer) — mounts plugins from
|
|
3
|
+
version = "0.5.6"
|
|
4
|
+
description = "dhis2 command-line interface (Typer) — mounts plugins from dhis2w-core."
|
|
5
5
|
readme = "README.md"
|
|
6
6
|
authors = [{ name = "Morten Hansen", email = "morten@winterop.com" }]
|
|
7
7
|
requires-python = ">=3.13"
|
|
@@ -15,7 +15,7 @@ from rich.logging import RichHandler
|
|
|
15
15
|
|
|
16
16
|
|
|
17
17
|
def _enable_debug_logging() -> None:
|
|
18
|
-
"""Turn on
|
|
18
|
+
"""Turn on dhis2w-client HTTP traces + dhis2w-core debug logs on stderr.
|
|
19
19
|
|
|
20
20
|
Uses `rich.logging.RichHandler` tied to the shared `STDERR_CONSOLE` so log
|
|
21
21
|
lines render above any active Rich `Progress` / `Status` display instead
|
|
@@ -46,7 +46,7 @@ def build_app() -> typer.Typer:
|
|
|
46
46
|
`main()` below) sees uncaught exceptions and can render them cleanly.
|
|
47
47
|
"""
|
|
48
48
|
app = typer.Typer(
|
|
49
|
-
help="dhis2 — command-line interface for DHIS2 (discovers plugins from
|
|
49
|
+
help="dhis2 — command-line interface for DHIS2 (discovers plugins from dhis2w-core).",
|
|
50
50
|
no_args_is_help=True,
|
|
51
51
|
add_completion=False,
|
|
52
52
|
pretty_exceptions_enable=False,
|
|
File without changes
|
|
File without changes
|
|
File without changes
|