Jose Diaz-Gonzalez commited on
Commit
cae8b66
·
1 Parent(s): e4dd656

Release version 0.2.0

Browse files
Files changed (3) hide show
  1. CHANGES.rst +197 -0
  2. README.rst +2 -2
  3. pytube/__init__.py +1 -1
CHANGES.rst ADDED
@@ -0,0 +1,197 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ Changelog
2
+ =========
3
+
4
+ 0.2.0 (2014-09-28)
5
+ ------------------
6
+
7
+ - Link PyVideos in readme. [Jose Diaz-Gonzalez]
8
+
9
+ - Fix codeblock formatting. [Jose Diaz-Gonzalez]
10
+
11
+ - Merge pull request #33 from NFicano/pypi-release. [Jose Diaz-Gonzalez]
12
+
13
+ Pypi release
14
+
15
+ - PEP8. [Jose Diaz-Gonzalez]
16
+
17
+ - Pep8. [Nick Ficano]
18
+
19
+ - Pep8. [Nick Ficano]
20
+
21
+ - Self-deprecating cleanup todos, defined encoding. [Nick Ficano]
22
+
23
+ - Explicit exception imports, removed unused method. [Nick Ficano]
24
+
25
+ - Updated readme. [Nick Ficano]
26
+
27
+ - Commented, flake8, TODOs. [Nick Ficano]
28
+
29
+ - Merge pull request #30 from josegonzalez/master. [Nick Ficano]
30
+
31
+ Add decryption support for vevo and dashmpd. Closes #25
32
+
33
+ - Merge pull request #29 from josegonzalez/master. [Nick Ficano]
34
+
35
+ PEP8
36
+
37
+ - Merge pull request #28 from jaimecosme/master. [Nick Ficano]
38
+
39
+ Fix for two videos with same extension and resolution.
40
+
41
+ - Merge pull request #27 from sanfx/print_status_flush. [Nick Ficano]
42
+
43
+ added a progress bar and percentage of download completed along with
44
+ human readable file size
45
+
46
+ - Merge pull request #26 from sanfx/print_status_flush. [Nick Ficano]
47
+
48
+ fixed printing status, flushes previous status in terminal
49
+
50
+ - Merge pull request #20 from chid/patch-1. [Nick Ficano]
51
+
52
+ Update README.md
53
+
54
+ - Merge pull request #21 from mursts/patch-py3. [Nick Ficano]
55
+
56
+ python 3 compatibility and convert tab to space
57
+
58
+ - Merge pull request #23 from masipcat/master. [Nick Ficano]
59
+
60
+ Now Pytube supports videos with signatures!
61
+
62
+ - Merge pull request #24 from masipcat/cipher_parser. [Nick Ficano]
63
+
64
+ Bug fixes related with signatures and optimizations
65
+
66
+ - Merge pull request #19 from insideou7/master. [Nick Ficano]
67
+
68
+ download uri now contains the signature by default.
69
+
70
+ - Merge pull request #16 from philipzae/patch-1. [Nick Ficano]
71
+
72
+ fixed spelling mistake
73
+
74
+ - Added README.rst, updated copy. [NFicano]
75
+
76
+ - Merge pull request #15 from b-mcg/master. [Nick Ficano]
77
+
78
+ Possible merge.
79
+
80
+ - Rearranged imports in cli. [NFicano]
81
+
82
+ - Part of previous commit. [NFicano]
83
+
84
+ - Renamed res arg to resolution for consistancy, moved pytube cli into
85
+ repository root, renamed it pytubectl. [NFicano]
86
+
87
+ - Fixed malformed import. [NFicano]
88
+
89
+ - Removed unnecessary import of cli. [NFicano]
90
+
91
+ - Reorganized, rewrote setup.py using distutils. [NFicano]
92
+
93
+ - Reverted back to setuptools. cleaned up setup.py. [NFicano]
94
+
95
+ - Updated version. [NFicano]
96
+
97
+ - Changed setuptools to distutils. [NFicano]
98
+
99
+ - Renamed LICENSE.txt to LICENSE. [NFicano]
100
+
101
+ - Fixed for PyPI! [NFicano]
102
+
103
+ * added setup.cfg * updated setup.py * renamed COPYING to LICENCE.txt.
104
+
105
+ - Merge pull request #10 from randomchars/cli. [Nick Ficano]
106
+
107
+ Add a comman line interface
108
+
109
+ - Updated README addressing how to get the highest resolution. [NFicano]
110
+
111
+ - Merge pull request #7 from randomchars/master. [Nick Ficano]
112
+
113
+ Video info parsing and Python 3 fixes
114
+
115
+ - Updated for Python 3.x. [NFicano]
116
+
117
+ - Added print statement back in, changed to rev 0.0.5, (1.0 will include
118
+ unit tests, and CLI), update README. [NFicano]
119
+
120
+ - Python 3.x! Reorganized file structure, removed print statements.
121
+ [NFicano]
122
+
123
+ - Merge pull request #4 from randomchars/master. [Nick Ficano]
124
+
125
+ Python 3 fixes
126
+
127
+ - Merge pull request #2 from ablanco/master. [Nick Ficano]
128
+
129
+ Fix download urls
130
+
131
+ - Pep8, pyflakes, fixed typos, better comments. [NFicano]
132
+
133
+ - Rearranged/cleaned up instructions. [NFicano]
134
+
135
+ - Updated README, added .psd to gitignore. [NFicano]
136
+
137
+ - AND a typo.. [NFicano]
138
+
139
+ - Modified installation instructions to use pip. [NFicano]
140
+
141
+ - Fixed syntax error in setup.py. [NFicano]
142
+
143
+ - Fixed classifier section of setup.py. [NFicano]
144
+
145
+ - Copy changes to README. [NFicano]
146
+
147
+ - Updated README copy. [NFicano]
148
+
149
+ - Added better exception handling, fixed a ton of bugs, added setup.py.
150
+ [NFicano]
151
+
152
+ - Fixed typos and added bugs to README. [NFicano]
153
+
154
+ - Updated README and AUTHORS. [NFicano]
155
+
156
+ - Merge pull request #1 from lorenzogil/master. [Nick Ficano]
157
+
158
+ Evaluate the status code and do nothing upon failure
159
+
160
+ - Bug fixes, added ability to specify output directory. [Nick Ficano]
161
+
162
+ * added ability to specify an output directory. * added missing
163
+ quality profiles. * handled exception when unexcepted quality profile
164
+ returned. * videos now get sorted by quality profile.
165
+
166
+ - General housekeeping, no code modified. [Nick Ficano]
167
+
168
+ * Added TODO * Added AUTHORS * Moved Licence agreement into COPYING.
169
+
170
+ - Removed my hardcoded path I had lazily set. [Nick Ficano]
171
+
172
+ - Renamed file sanitizing function. [Nick Ficano]
173
+
174
+ - Fixed bug causing filename to truncate word. [Nick Ficano]
175
+
176
+ filename sanitizing function was causing the last word in the filename
177
+ to get truncated.
178
+
179
+ - Minor project reorganizing. [Nick Ficano]
180
+
181
+ * Moved project into subdirectory, preparing to write setup script.
182
+
183
+ - Updated readme to show off more features. [Nick Ficano]
184
+
185
+ - Cleanup, Pep8, finished docstring, 100% std lib. [Nick Ficano]
186
+
187
+ * A bit of tidying some odds and ends. * Pep8 * Finished docstrings *
188
+ Removed ``requests`` dependency making it compatible out of the box *
189
+ Rewrote filename sanitization method, also fixing unicode error.
190
+
191
+ - AH! forgot a trailing quote. [Nick Ficano]
192
+
193
+ - Cleaned up the README a tad. [Nick Ficano]
194
+
195
+ - Initial commit. [Nick Ficano]
196
+
197
+
README.rst CHANGED
@@ -29,13 +29,13 @@ Using PIP via Github
29
 
30
  .. code:: bash
31
 
32
- pip install git+git://github.com/NFicano/pytube.git@0.1.16#egg=pytube
33
 
34
  Adding to your ``requirements.txt`` file (run ``pip install -r requirements.txt`` afterwards)
35
 
36
  .. code:: bash
37
 
38
- git+ssh://[email protected]/NFicano/pytube.git@0.1.16#egg=pytube
39
 
40
  Manually via GIT
41
 
 
29
 
30
  .. code:: bash
31
 
32
+ pip install git+git://github.com/NFicano/pytube.git@0.2.0#egg=pytube
33
 
34
  Adding to your ``requirements.txt`` file (run ``pip install -r requirements.txt`` afterwards)
35
 
36
  .. code:: bash
37
 
38
+ git+ssh://[email protected]/NFicano/pytube.git@0.2.0#egg=pytube
39
 
40
  Manually via GIT
41
 
pytube/__init__.py CHANGED
@@ -1,5 +1,5 @@
1
  __title__ = 'pytube'
2
- __version__ = '0.1.16'
3
  __author__ = 'Nick Ficano'
4
  __license__ = 'MIT License'
5
  __copyright__ = 'Copyright 2013 Nick Ficano'
 
1
  __title__ = 'pytube'
2
+ __version__ = '0.2.0'
3
  __author__ = 'Nick Ficano'
4
  __license__ = 'MIT License'
5
  __copyright__ = 'Copyright 2013 Nick Ficano'