Merge branch 'master' of github.com:nficano/pytube
Browse files* 'master' of github.com:nficano/pytube:
Create LICENSE.txt
No need to explain -e and -r flags
Fix a tiny typo: perticular to particular
- LICENSE +1 -1
- README.rst +2 -8
LICENSE
CHANGED
@@ -1,4 +1,4 @@
|
|
1 |
-
Copyright (c)
|
2 |
|
3 |
Permission is hereby granted, free of charge, to any person obtaining a copy of
|
4 |
this software and associated documentation files (the "Software"), to deal in
|
|
|
1 |
+
Copyright (c) 2017 Nick Ficano
|
2 |
|
3 |
Permission is hereby granted, free of charge, to any person obtaining a copy of
|
4 |
this software and associated documentation files (the "Software"), to deal in
|
README.rst
CHANGED
@@ -56,7 +56,7 @@ Library usage
|
|
56 |
yt = YouTube("http://www.youtube.com/watch?v=Ik-RsDGPI5Y")
|
57 |
|
58 |
# Once set, you can see all the codec and quality options YouTube has made
|
59 |
-
# available for the
|
60 |
|
61 |
print(yt.get_videos())
|
62 |
|
@@ -184,12 +184,6 @@ and/or optionally choose the filename (``-f`` or ``--filename=``):
|
|
184 |
|
185 |
$ pytube -e mp4 -f "Dancing Scene from Pulp Fiction" http://www.youtube.com/watch?v=Ik-RsDGPI5Y
|
186 |
|
187 |
-
You can also specify a resolution or desired filetype:
|
188 |
-
|
189 |
-
.. code:: bash
|
190 |
-
|
191 |
-
$ pytube -e mp4 -r 720p http://www.youtube.com/watch?v=Ik-RsDGPI5Y
|
192 |
-
|
193 |
Development
|
194 |
===========
|
195 |
|
@@ -210,4 +204,4 @@ Once complete, execute the following commands:
|
|
210 |
$ python setup.py sdist bdist_wheel upload
|
211 |
$
|
212 |
$ bumpversion --no-tag patch
|
213 |
-
$ git push origin master --tags
|
|
|
56 |
yt = YouTube("http://www.youtube.com/watch?v=Ik-RsDGPI5Y")
|
57 |
|
58 |
# Once set, you can see all the codec and quality options YouTube has made
|
59 |
+
# available for the particular video by printing videos.
|
60 |
|
61 |
print(yt.get_videos())
|
62 |
|
|
|
184 |
|
185 |
$ pytube -e mp4 -f "Dancing Scene from Pulp Fiction" http://www.youtube.com/watch?v=Ik-RsDGPI5Y
|
186 |
|
|
|
|
|
|
|
|
|
|
|
|
|
187 |
Development
|
188 |
===========
|
189 |
|
|
|
204 |
$ python setup.py sdist bdist_wheel upload
|
205 |
$
|
206 |
$ bumpversion --no-tag patch
|
207 |
+
$ git push origin master --tags
|