also write the whole json

This commit is contained in:
filifa 2024-08-04 14:54:43 -05:00
parent a8f4bc5e30
commit 972a6226a2
2 changed files with 5 additions and 4 deletions

View File

@ -29,7 +29,7 @@ then
exit 1
fi
jqFilter='.dates[].games[] | "\(.gamePk),\(.status.detailedState)"'
fmt="OFS=\",\"; print \$1, \"$team\", \$2, 0"
save="\"sqlite3 $db '.import --csv /dev/stdin games'\""
mlblive schedule -t $team | jq -r "$jqFilter" | awk -F , "{$fmt | $save; close($save)}"
jqFilter='.dates[].games[] | "\(.gamePk)\(.status.detailedState)\(.)"'
fmt="OFS=\"\"; print \$1, \"$team\", \$2, \$3, 0"
save="\"sqlite3 $db '.mode ascii' '.separator ' '.import /dev/stdin games'\""
mlblive schedule -t $team | jq -r "$jqFilter" | awk -F  "{$fmt | $save; close($save)}"

View File

@ -20,6 +20,7 @@ create table if not exists games (
gamePk integer,
teamId text,
state text,
json text,
posted integer,
unique (teamId, gamePk) on conflict ignore
);