From 110146acf44340a75b41f771def672126ecdbf23 Mon Sep 17 00:00:00 2001 From: Tony Grosinger Date: Thu, 7 Nov 2019 06:53:12 -0800 Subject: [PATCH] Updated README.md with Docker instructions --- README.md | 26 +++++++++++++++++++++++++- 1 file changed, 25 insertions(+), 1 deletion(-) diff --git a/README.md b/README.md index b21dd57..dea082e 100644 --- a/README.md +++ b/README.md @@ -10,9 +10,27 @@ This script requires python3. Additional dependencies can be found in the `requi ## Usage +### Docker + +``` +git clone https://github.com/tgrosinger/youtube-dl-subscriptions + +./build.sh +cp run.example.sh run.sh + +# Make necessary changes in run.sh + +./run.sh +``` + +### Running Locally + +If you do not want to use Docker, you can instead setup the dependencies to run +this script from your locally installed python. + Clone the repository - git clone https://github.com/mewfree/youtube-dl-subscriptions + git clone https://github.com/tgrosinger/youtube-dl-subscriptions Install the requirements @@ -25,3 +43,9 @@ You can then run the script python3 dl.py A `last.txt` file will be created in order to avoid downloading the same videos on the next run. + +## Credits + +Based on the work from +[mewfree](https://github.com/mewfree/youtube-dl-subscriptions/) and +[pwcazenave](https://github.com/pwcazenave/youtube-dl-subscriptions).