Add the tally-groups subcommand settling results/groups.csv

Co-Authored-By: Claude Fable 5 <noreply@anthropic.com>
This commit is contained in:
2026-08-17 21:47:38 +08:00
co-authored by Claude Fable 5
parent 87846e0c8e
commit 3f4355aaa5
8 changed files with 614 additions and 3 deletions
@@ -23,6 +23,7 @@ from .commands import (
fetch_lyrics_command,
run_llm_command,
tally_codings_command,
tally_groups_command,
)
MODULE_PROG: str = "python -m pop_fem_audit_tools"
@@ -36,6 +37,7 @@ SUBCOMMANDS: dict[str, Callable[[list[str] | None], int]] = {
"fetch-lyrics": fetch_lyrics_command,
"run-llm": run_llm_command,
"tally-codings": tally_codings_command,
"tally-groups": tally_groups_command,
}
"""The dispatch table from the subcommand name to the tool main."""