From f6ffa22c213841f24943a4eae6152dae0cae63f4 Mon Sep 17 00:00:00 2001 From: Maxime Wack Date: Sun, 31 Dec 2017 09:50:52 +0100 Subject: [PATCH] Added script to download from imdb --- dl_imdb.sh | 3 +++ 1 file changed, 3 insertions(+) create mode 100755 dl_imdb.sh diff --git a/dl_imdb.sh b/dl_imdb.sh new file mode 100755 index 0000000..d039920 --- /dev/null +++ b/dl_imdb.sh @@ -0,0 +1,3 @@ +curl https://datasets.imdbws.com/title.basics.tsv.gz | gzip -d | cut -f 1-3 > basics.tsv +curl https://datasets.imdbws.com/title.ratings.tsv.gz | gzip -d > ratings.tsv +curl https://datasets.imdbws.com/title.episode.tsv.gz | gzip -d > episodes.tsv