-
Notifications
You must be signed in to change notification settings - Fork 17
Expand file tree
/
Copy pathREADME
More file actions
executable file
·62 lines (42 loc) · 1.3 KB
/
README
File metadata and controls
executable file
·62 lines (42 loc) · 1.3 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
udacity-dl
===========
A python package for archiving content from udacity.org (videos,
lecture notes, quizzes, …) for offline reference.
-------------
Installation
-------------
Make sure you have installed:
Python 2.7 (http://www.python.org/download)
mechanize 0.3.1 (https://pypi.python.org/pypi/mechanize/)
With the help of python pip installation is as simple:
`sudo pip install udacity-dl`
If you prefer manual installation:
- Clone [this repo]() locally
- Then simply run: `python setup.py install`
This will create a udacity-dl script in `/usr/local/bin` (linux) or
`c:\\Python27\\Scripts` (windows)
------
Usage
------
For Usage help, run:
`udacity-dl -h`
Example usage:
`udacity-dl -d /my/destination/path/ course_name(s)`
------
Notes
------
For the link: https://www.udacity.com/wiki/ST095/downloads *ST095* is the course_name
Usage:
`udacity-dl -d /my/destination/path/ ST095 cs222`
A few courses and their respective course names have been listed under
[udacity_courses](/udacity_courses.md)
---------
Features
---------
* Now downloads all available resources in wiki
* Skips already downloaded resources
* Proper naming of course and class contents
* No need of Udacity username and password
* Updated Courses list
* Fix class downloads with multiple section per unit
=======================