aboutsummaryrefslogtreecommitdiff
path: root/python/python3-click-option-group/README
diff options
context:
space:
mode:
authorJeremy Hansen <jebrhansen+SBo@gmail.com>2024-06-26 07:25:17 +0700
committerWilly Sudiarto Raharjo <willysr@slackbuilds.org>2024-06-26 07:36:55 +0700
commitfce98ac2159d41eed8a20c680391983cd5dcd4a3 (patch)
treeda5d2d264f0ff716589f8928936a4153a095d30d /python/python3-click-option-group/README
parenta361547ecee0a29c9f9c51c4014f140f406266f1 (diff)
python/python3-click-option-group: Added (CLI in python).
Signed-off-by: Willy Sudiarto Raharjo <willysr@slackbuilds.org>
Diffstat (limited to 'python/python3-click-option-group/README')
-rw-r--r--python/python3-click-option-group/README11
1 files changed, 11 insertions, 0 deletions
diff --git a/python/python3-click-option-group/README b/python/python3-click-option-group/README
new file mode 100644
index 0000000000..5bd26d8f4f
--- /dev/null
+++ b/python/python3-click-option-group/README
@@ -0,0 +1,11 @@
+python3-click-option-group (Option groups missing in Click)
+
+Click is a package for creating powerful and beautiful command line
+interfaces (CLI) in Python, but it has no the functionality for
+creating option groups.
+
+Option groups are convenient mechanism for logical structuring
+CLI, also it allows you to set the specific behavior and set the
+relationship among grouped options (mutually exclusive options
+for example). Moreover, argparse stdlib package contains this
+functionality out of the box.