Add the tally-codings subcommand for the majority vote

Co-Authored-By: Claude Opus 5 (1M context) <noreply@anthropic.com>
This commit is contained in:
2026-08-17 22:38:35 +08:00
co-authored by Claude Opus 5
parent 24a4ca6970
commit 95a05a0631
8 changed files with 1146 additions and 9 deletions
@@ -22,6 +22,7 @@ from .commands import (
fetch_artists_command,
fetch_lyrics_command,
run_llm_command,
tally_codings_command,
)
MODULE_PROG: str = "python -m pop_fem_audit_tools"
@@ -34,6 +35,7 @@ SUBCOMMANDS: dict[str, Callable[[list[str] | None], int]] = {
"fetch-artists": fetch_artists_command,
"fetch-lyrics": fetch_lyrics_command,
"run-llm": run_llm_command,
"tally-codings": tally_codings_command,
}
"""The dispatch table from the subcommand name to the tool main."""