Nick Ficano
commited on
Commit
·
bd8601d
1
Parent(s):
b670cc8
renamed cli to just pytube
Browse files- README.rst +4 -4
- scripts/{pytubectl → pytube} +0 -0
- setup.py +1 -1
README.rst
CHANGED
@@ -58,27 +58,27 @@ setting it to the desired filetype:
|
|
58 |
|
59 |
.. code:: bash
|
60 |
|
61 |
-
|
62 |
|
63 |
|
64 |
Same thing for specifying a resolution:
|
65 |
|
66 |
.. code:: bash
|
67 |
|
68 |
-
|
69 |
|
70 |
|
71 |
You can also specify a download file path (``-p`` or ``--path=``):
|
72 |
|
73 |
.. code:: bash
|
74 |
|
75 |
-
|
76 |
|
77 |
and/or optionally choose the filename (``-f`` or ``--filename=``):
|
78 |
|
79 |
.. code:: bash
|
80 |
|
81 |
-
|
82 |
|
83 |
|
84 |
|
|
|
58 |
|
59 |
.. code:: bash
|
60 |
|
61 |
+
$ pytube -e mp4 http://www.youtube.com/watch?v=Ik-RsDGPI5Y
|
62 |
|
63 |
|
64 |
Same thing for specifying a resolution:
|
65 |
|
66 |
.. code:: bash
|
67 |
|
68 |
+
$ pytube -r 720p http://www.youtube.com/watch?v=Ik-RsDGPI5Y
|
69 |
|
70 |
|
71 |
You can also specify a download file path (``-p`` or ``--path=``):
|
72 |
|
73 |
.. code:: bash
|
74 |
|
75 |
+
$ pytube -e mp4 -p ~/Downloads/ http://www.youtube.com/watch?v=Ik-RsDGPI5Y
|
76 |
|
77 |
and/or optionally choose the filename (``-f`` or ``--filename=``):
|
78 |
|
79 |
.. code:: bash
|
80 |
|
81 |
+
$ pytube -e mp4 -f Dancing Scene from Pulp Fiction http://www.youtube.com/watch?v=Ik-RsDGPI5Y
|
82 |
|
83 |
|
84 |
|
scripts/{pytubectl → pytube}
RENAMED
File without changes
|
setup.py
CHANGED
@@ -23,7 +23,7 @@ setup(
|
|
23 |
packages=['pytube'],
|
24 |
url="http://pytube.nickficano.com",
|
25 |
license=open_file('LICENSE.txt').read(),
|
26 |
-
scripts=['scripts/
|
27 |
classifiers=[
|
28 |
"Development Status :: 4 - Beta",
|
29 |
"Environment :: Console",
|
|
|
23 |
packages=['pytube'],
|
24 |
url="http://pytube.nickficano.com",
|
25 |
license=open_file('LICENSE.txt').read(),
|
26 |
+
scripts=['scripts/pytube'],
|
27 |
classifiers=[
|
28 |
"Development Status :: 4 - Beta",
|
29 |
"Environment :: Console",
|