youtube-dl

Another place where youtube-dl lives on
git clone git://git.oshgnacknak.de/youtube-dl.git
Log | Files | Refs | README | LICENSE

commit 146c80e2562dab0f229f13a1fbc0e8ae116d4cb3
parent f78c01f68b1e16e385ec319c7f5d351b173c7ec5
Author: Sergey M․ <dstftw@gmail.com>
Date:   Fri,  3 Oct 2014 19:37:25 +0700

[utils] Add parse_age_limit

Diffstat:
Myoutube_dl/utils.py | 7+++++++
1 file changed, 7 insertions(+), 0 deletions(-)

diff --git a/youtube_dl/utils.py b/youtube_dl/utils.py @@ -1574,6 +1574,13 @@ US_RATINGS = { } +def parse_age_limit(s): + if s is None: + return 0 + m = re.match(r'^(?P<age>\d{1,2})\+?$', s) + return int(m.group('age')) if m else US_RATINGS.get(s, 0) + + def strip_jsonp(code): return re.sub(r'(?s)^[a-zA-Z0-9_]+\s*\(\s*(.*)\);?\s*?\s*$', r'\1', code)