MicroQA/README.md
Brent Schroeter 8dbcb19b43 init
2025-08-10 12:27:39 -07:00

18 lines
404 B
Markdown

# MicroQA
QA assistant for the Internet Archive's microfiche scanning team.
## Usage
Analyze page statistics for item:
```sh
echo 'micro_IA04244212_1665' | uv run main.py | jq
```
Paste item IDs from clipboard and summarize all (`tr` command collapses input to
a single line so that items are summarized in parallel):
```sh
pbpaste | tr '\n' ',' | uv run main.py --summarize -workers 4 -v | jq
```