nficano commited on
Commit
7b5a20e
·
1 Parent(s): d1b1248

Rearranged/cleaned up instructions.

Browse files
Files changed (1) hide show
  1. README.md +24 -21
README.md CHANGED
@@ -9,33 +9,19 @@ Prsent to you, PyTube!
9
 
10
 
11
  ## Installation
12
- Install PyTube with one of the following commands:
 
13
  ```
14
- $ easy_install install pytube
15
  ```
16
- or alternatively if you have pip installed:
 
 
17
  ```
18
  $ pip install pytube
19
  ```
20
 
21
- or you can get the [source code from github](https://github.com/NFicano/python-youtube-download)
22
-
23
- ### Background
24
-
25
- After missing the deadline to register for PyCon 2012, I decided to write what
26
- became PyTube and crawler to collect all the YouTube links for the talks
27
- on [PyVideos.org](http://pyvideo.org/).
28
-
29
- To avoid having to encode them to mp4 (so I could watch them on my iPhone)
30
- I wrote it so you could specify an encoding format.
31
-
32
- In recently weeks interest has picked up in the project, so I decided to
33
- dedicate more time to further its development and actively maintain it.
34
-
35
- ### Philosophy
36
-
37
- My only real goal for this is to never require any third party dependancies,
38
- to keep it simple and make it reliable.
39
 
40
  ### Roadmap
41
 
@@ -136,3 +122,20 @@ video.download()
136
  # argument to the download method.
137
  video.download('/tmp/')
138
  ```
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
9
 
10
 
11
  ## Installation
12
+ If you are on Mac OS X or Linux, chances are that one of the following two commands will work for you:
13
+
14
  ```
15
+ $ easy_install pytube
16
  ```
17
+
18
+ or even better:
19
+
20
  ```
21
  $ pip install pytube
22
  ```
23
 
24
+ or you can get the [source code from github](https://github.com/NFicano/python-youtube-download).
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
25
 
26
  ### Roadmap
27
 
 
122
  # argument to the download method.
123
  video.download('/tmp/')
124
  ```
125
+
126
+ ## Background
127
+
128
+ After missing the deadline to register for PyCon 2012, I decided to write what
129
+ became PyTube and crawler to collect all the YouTube links for the talks
130
+ on [PyVideos.org](http://pyvideo.org/).
131
+
132
+ To avoid having to encode them to mp4 (so I could watch them on my iPhone)
133
+ I wrote it so you could specify an encoding format.
134
+
135
+ In recently weeks interest has picked up in the project, so I decided to
136
+ dedicate more time to further its development and actively maintain it.
137
+
138
+ ## Philosophy
139
+
140
+ My only real goal for this is to never require any third party dependancies,
141
+ to keep it simple and make it reliable.