copy changes to README
Browse files
README.md
CHANGED
@@ -6,7 +6,21 @@ Downloading videos from YouTube shouldn't require some bloatware application,
|
|
6 |
it's usually a niche condition you want to do so in the first place. So I
|
7 |
Prsent to you, PyTube!
|
8 |
|
9 |
-
##
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
10 |
|
11 |
After missing the deadline to register for PyCon 2012, I decided to write what
|
12 |
became PyTube and crawler to collect all the YouTube links for the talks
|
@@ -33,7 +47,7 @@ The only features I see implementing in the near future are:
|
|
33 |
## Usage Example
|
34 |
|
35 |
``` python
|
36 |
-
from
|
37 |
|
38 |
# not necessary, just for demo purposes
|
39 |
from pprint import pprint
|
|
|
6 |
it's usually a niche condition you want to do so in the first place. So I
|
7 |
Prsent to you, PyTube!
|
8 |
|
9 |
+
## Installation from Git
|
10 |
+
First you will need to clone the git repo:
|
11 |
+
|
12 |
+
```
|
13 |
+
$ git clone https://github.com/NFicano/python-youtube-download.git
|
14 |
+
```
|
15 |
+
|
16 |
+
Now we can install from the repo:
|
17 |
+
|
18 |
+
```
|
19 |
+
$ cd python-youtube-download
|
20 |
+
$ python setup.py install # may need to be root
|
21 |
+
```
|
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
|
|
|
47 |
## Usage Example
|
48 |
|
49 |
``` python
|
50 |
+
from pytube import YouTube
|
51 |
|
52 |
# not necessary, just for demo purposes
|
53 |
from pprint import pprint
|