some cleanup in readme
Browse files- README.rst +8 -8
README.rst
CHANGED
@@ -20,15 +20,15 @@ unusual to have to do so in the first place. So I present to you, PyTube!
|
|
20 |
Requirements
|
21 |
============
|
22 |
|
23 |
-
- Python 2.6+ (2.7 or 3.4 recommended)
|
24 |
-
-
|
25 |
-
-
|
26 |
|
27 |
Installation
|
28 |
============
|
29 |
|
30 |
-
If you
|
31 |
-
|
32 |
|
33 |
Using PIP via PyPI
|
34 |
|
@@ -36,7 +36,7 @@ Using PIP via PyPI
|
|
36 |
|
37 |
pip install pytube
|
38 |
|
39 |
-
Using
|
40 |
|
41 |
.. code:: bash
|
42 |
|
@@ -48,7 +48,7 @@ Adding to your ``requirements.txt`` file (run ``pip install -r requirements.txt`
|
|
48 |
|
49 |
git+ssh://git@github.com/nficano/pytube#egg=pytube
|
50 |
|
51 |
-
Manually via
|
52 |
|
53 |
.. code:: bash
|
54 |
|
@@ -96,7 +96,7 @@ Library Usage
|
|
96 |
|
97 |
from pytube import YouTube
|
98 |
|
99 |
-
# not necessary, just for demo purposes
|
100 |
from pprint import pprint
|
101 |
|
102 |
yt = YouTube("http://www.youtube.com/watch?v=Ik-RsDGPI5Y")
|
|
|
20 |
Requirements
|
21 |
============
|
22 |
|
23 |
+
- Python 2.6+ (2.7 or 3.4+ recommended)
|
24 |
+
- pip (for some installation methods)
|
25 |
+
- git (for some installation methods)
|
26 |
|
27 |
Installation
|
28 |
============
|
29 |
|
30 |
+
If you're on Mac OS X or Linux, chances are that one of the following commands
|
31 |
+
will work for you:
|
32 |
|
33 |
Using PIP via PyPI
|
34 |
|
|
|
36 |
|
37 |
pip install pytube
|
38 |
|
39 |
+
Using pip via Github
|
40 |
|
41 |
.. code:: bash
|
42 |
|
|
|
48 |
|
49 |
git+ssh://git@github.com/nficano/pytube#egg=pytube
|
50 |
|
51 |
+
Manually via git
|
52 |
|
53 |
.. code:: bash
|
54 |
|
|
|
96 |
|
97 |
from pytube import YouTube
|
98 |
|
99 |
+
# not necessary, just for demo purposes.
|
100 |
from pprint import pprint
|
101 |
|
102 |
yt = YouTube("http://www.youtube.com/watch?v=Ik-RsDGPI5Y")
|