Add --raw flag to csv command to skip aggregation

- Add `to_csv_entries()` to output.py: converts raw rows to write_csv
  entries one-for-one, without merging by (project, description)
- Add `--raw` flag to the csv subparser; _cmd_csv branches on it
- Add TestToCsvEntries with 6 tests
- Update README with --raw usage example
- Add .coverage and htmlcov/ to .gitignore
This commit is contained in:
Jef Roosens 2026-05-28 13:07:50 +02:00
parent 91ce81a65f
commit 985ee28113
Signed by: Jef Roosens
GPG key ID: 119385BCAA005C21
6 changed files with 97 additions and 4 deletions

View file

@ -66,6 +66,7 @@ uv run timesheets summary -w -ss --joplin # weekly totals only: one line
```sh
uv run timesheets csv --joplin # stdout
uv run timesheets csv --joplin -o output.csv # write to file
uv run timesheets csv --raw --joplin # one row per entry, no aggregation
```
### stories