Skip to content

Instantly share code, notes, and snippets.

@swayson
Created January 31, 2014 13:43
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save swayson/8732275 to your computer and use it in GitHub Desktop.
Save swayson/8732275 to your computer and use it in GitHub Desktop.
Shell script for preparation and use of the edx-downloader python script.
# 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 -u=user@gmail.com -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