You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
rsvp-reader/scripts/generate-data.sh

14 lines
342 B
Bash

#!/bin/bash
METADATA_URL='https://github.com/hugovk/gutenberg-metadata/raw/master/gutenberg-metadata.json'
METADATA_FILE='tmp/gutenberg-metadata.json'
mkdir -p tmp
# download metadata file if it does not exists
if [ ! -f $METADATA_FILE ]; then
wget -O $METADATA_FILE $METADATA_URL
fi
python3 scripts/process-metadata.py $METADATA_FILE