cal-docs-client 1.0.0b1__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.
- cal_docs_client/__init__.py +20 -0
- cal_docs_client/__main__.py +21 -0
- cal_docs_client/_version.py +4 -0
- cal_docs_client/argbuilder.py +1424 -0
- cal_docs_client/cli.py +518 -0
- cal_docs_client/client.py +265 -0
- cal_docs_client/common/__init__.py +32 -0
- cal_docs_client/common/colour.py +107 -0
- cal_docs_client/version.py +32 -0
- cal_docs_client-1.0.0b1.dist-info/METADATA +120 -0
- cal_docs_client-1.0.0b1.dist-info/RECORD +14 -0
- cal_docs_client-1.0.0b1.dist-info/WHEEL +4 -0
- cal_docs_client-1.0.0b1.dist-info/entry_points.txt +2 -0
- cal_docs_client-1.0.0b1.dist-info/licenses/LICENSE +21 -0
|
@@ -0,0 +1,20 @@
|
|
|
1
|
+
# ────────────────────────────────────────────────────────────────────────────────────────
|
|
2
|
+
# __init__.py
|
|
3
|
+
# ───────────
|
|
4
|
+
#
|
|
5
|
+
# cal-docs-client package root.
|
|
6
|
+
#
|
|
7
|
+
# (c) 2026 Cyber Assessment Labs — MIT License; see LICENSE in the project root.
|
|
8
|
+
#
|
|
9
|
+
# Authors
|
|
10
|
+
# ───────
|
|
11
|
+
# bena (via Claude)
|
|
12
|
+
#
|
|
13
|
+
# Version History
|
|
14
|
+
# ───────────────
|
|
15
|
+
# Feb 2026 - Created
|
|
16
|
+
# ────────────────────────────────────────────────────────────────────────────────────────
|
|
17
|
+
|
|
18
|
+
from .version import VERSION_STR
|
|
19
|
+
|
|
20
|
+
__all__ = ["VERSION_STR"]
|
|
@@ -0,0 +1,21 @@
|
|
|
1
|
+
# ────────────────────────────────────────────────────────────────────────────────────────
|
|
2
|
+
# __main__.py
|
|
3
|
+
# ───────────
|
|
4
|
+
#
|
|
5
|
+
# Entry point for running the package as a module: python -m cal_docs_client
|
|
6
|
+
#
|
|
7
|
+
# (c) 2026 Cyber Assessment Labs — MIT License; see LICENSE in the project root.
|
|
8
|
+
#
|
|
9
|
+
# Authors
|
|
10
|
+
# ───────
|
|
11
|
+
# bena (via Claude)
|
|
12
|
+
#
|
|
13
|
+
# Version History
|
|
14
|
+
# ───────────────
|
|
15
|
+
# Feb 2026 - Created
|
|
16
|
+
# ────────────────────────────────────────────────────────────────────────────────────────
|
|
17
|
+
|
|
18
|
+
import sys
|
|
19
|
+
from .cli import main
|
|
20
|
+
|
|
21
|
+
sys.exit(main())
|