Created
January 31, 2014 13:43
-
-
Save swayson/8732275 to your computer and use it in GitHub Desktop.
Shell script for preparation and use of the edx-downloader python script.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# Create a virtual environment using conda | |
conda create -n edx_downloader python=2.7 pip | |
activate edx_downloader | |
# Install dependencies: | |
pip install youtube-dl | |
pip install beautifulsoup4 | |
# Get the script | |
git clone https://github.com/dmitrime/edx-downloader.git | |
# Go to folder and run script using your Stanford Username and Password | |
cd edx-downloader | |
python edx-dl.py --platform=stanford [email protected] -p=password | |
# Follow the prompts to select which course and set of videos to download. |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment