Created
October 8, 2013 18:51
-
-
Save janosgyerik/6889625 to your computer and use it in GitHub Desktop.
Recipe to download all lecture notes of a course on Coursera
This file contains hidden or 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
# requirements: python, virtualenv, pip | |
# | |
# create a virtualenv -- I keep all my virtualenvs in ~/virtualenv | |
virtualenv --distribute ~/virtualenv/coursera | |
# activate virtualenv | |
. ~/virtualenv/coursera/bin/activate | |
# get the coursera downloader tool and install requirements | |
git clone https://github.com/jplehmann/coursera | |
cd coursera | |
pip install -r requirements.txt | |
# download *all* lecture notes for a course, for example "progfun-003" (Scala) | |
./coursera-dl -u [email protected] -p password progfun-003 |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
does this still work? @janosgyerik