diff --git a/download_replay.sh b/download_replay.sh new file mode 100755 index 0000000..263e3db --- /dev/null +++ b/download_replay.sh @@ -0,0 +1,11 @@ +#!/bin/bash + +#Please write ids of replay to download +ids=(52965522 51283939) + +mkdir -p data && cd data + +for id in ${ids[@]} +do + curl -O https://www.kaggleusercontent.com/episodes/${id}.json +done