You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
lexonomy_custom_editor/build/download_structure_conversi...

25 lines
627 B

#!/bin/bash
# fail if any command fails
set -e
OUT_FILE=conversions.csv
if [[ -z "${API_KEY}" ]]; then
echo "API_KEY not defined, should be api key to CJVT's gitea"
exit 1
fi
if [ -f $OUT_FILE ]; then
echo "file for conversion of SKE collocations: '$OUT_FILE' already exists, skipping."
exit 0
fi
TEMP_FILE=$(mktemp)
curl -s "https://gitea.cjvt.si/api/v1/repos/generic/data_admin/contents/resources/structure_conversions.csv?token=$API_KEY" -o $TEMP_FILE
echo "wc: $(wc $TEMP_FILE)"
cat $TEMP_FILE | python3 -c "import sys, json; print(json.load(sys.stdin)['content'])" | base64 -d > $OUT_FILE
rm -rf $TEMP_FILE