diff options
Diffstat (limited to 'bin')
-rwxr-xr-x | bin/build-players.sh | 3 | ||||
-rwxr-xr-x | bin/build-rankings.sh | 12 | ||||
-rwxr-xr-x | bin/make.sh | 2 |
3 files changed, 15 insertions, 2 deletions
diff --git a/bin/build-players.sh b/bin/build-players.sh new file mode 100755 index 0000000..93edf63 --- /dev/null +++ b/bin/build-players.sh @@ -0,0 +1,3 @@ +#!/bin/bash +DIR=$1 +python players.py $DIR/players diff --git a/bin/build-rankings.sh b/bin/build-rankings.sh new file mode 100755 index 0000000..1896afb --- /dev/null +++ b/bin/build-rankings.sh @@ -0,0 +1,12 @@ +#!/bin/bash +CONFIG=$1 +DIR=$2 +PREV_DATE="" +cat $CONFIG | + jq '.[] | .date, .url, .index, .name' | + xargs -n4 | + while read DATE URL INDEX NAME + do + python ranking.py "$NAME" $INDEX $DATE $PREV_DATE > $DIR/$URL + PREV_DATE=$DATE + done diff --git a/bin/make.sh b/bin/make.sh deleted file mode 100755 index 4bc8749..0000000 --- a/bin/make.sh +++ /dev/null @@ -1,2 +0,0 @@ -#!/bin/bash -bin/build.sh config/dates.json http |