diff options
author | Sergey M․ <dstftw@gmail.com> | 2018-04-08 22:21:21 +0700 |
---|---|---|
committer | Sergey M․ <dstftw@gmail.com> | 2018-04-08 22:21:21 +0700 |
commit | d04ca9761615e2ed3fdf89d8d87a4b9adfffacc3 (patch) | |
tree | ee877373153f903d967b9934466c209d811f1529 /youtube_dl/extractor | |
parent | 608c738c7d8e6be21f0cc0bb7a844bad9d841964 (diff) |
[odnoklassniki] Improve _VALID_URL readability
Diffstat (limited to 'youtube_dl/extractor')
-rw-r--r-- | youtube_dl/extractor/odnoklassniki.py | 13 |
1 files changed, 12 insertions, 1 deletions
diff --git a/youtube_dl/extractor/odnoklassniki.py b/youtube_dl/extractor/odnoklassniki.py index d87d0960f..190d8af4d 100644 --- a/youtube_dl/extractor/odnoklassniki.py +++ b/youtube_dl/extractor/odnoklassniki.py @@ -19,7 +19,18 @@ from ..utils import ( class OdnoklassnikiIE(InfoExtractor): - _VALID_URL = r'https?://(?:(?:www|m|mobile)\.)?(?:odnoklassniki|ok)\.ru/(?:video(?:embed)?/|web-api/video/moviePlayer/|live/|dk\?.*?st\.mvId=)(?P<id>[\d-]+)' + _VALID_URL = r'''(?x) + https?:// + (?:(?:www|m|mobile)\.)? + (?:odnoklassniki|ok)\.ru/ + (?: + video(?:embed)?/| + web-api/video/moviePlayer/| + live/| + dk\?.*?st\.mvId= + ) + (?P<id>[\d-]+) + ''' _TESTS = [{ # metadata in JSON 'url': 'http://ok.ru/video/20079905452', |