diff options
| author | JChris246 <43832407+JChris246@users.noreply.github.com> | 2019-04-13 04:02:09 -0400 | 
|---|---|---|
| committer | Sergey M <dstftw@gmail.com> | 2019-04-13 15:02:09 +0700 | 
| commit | 8721b097510819e11470d9cc7cc2f7593c2a36e2 (patch) | |
| tree | 54f4959e32ac47e4e5cde148639427743ee1f2be | |
| parent | dc27fd8bb8fc245155027d065861ef26d5137b7b (diff) | |
[yourporn] Add support for sxyprn.com (#20646)
| -rw-r--r-- | youtube_dl/extractor/yourporn.py | 9 | 
1 files changed, 6 insertions, 3 deletions
diff --git a/youtube_dl/extractor/yourporn.py b/youtube_dl/extractor/yourporn.py index 2c63f9752..b1d1eb6b6 100644 --- a/youtube_dl/extractor/yourporn.py +++ b/youtube_dl/extractor/yourporn.py @@ -8,8 +8,8 @@ from ..utils import (  class YourPornIE(InfoExtractor): -    _VALID_URL = r'https?://(?:www\.)?yourporn\.sexy/post/(?P<id>[^/?#&.]+)' -    _TEST = { +    _VALID_URL = r'https?://(?:www\.)?(?:yourporn\.sexy|sxyprn\.com)/post/(?P<id>[^/?#&.]+)' +    _TESTS = [{          'url': 'https://yourporn.sexy/post/57ffcb2e1179b.html',          'md5': '6f8682b6464033d87acaa7a8ff0c092e',          'info_dict': { @@ -23,7 +23,10 @@ class YourPornIE(InfoExtractor):          'params': {              'skip_download': True,          }, -    } +    }, { +        'url': 'https://sxyprn.com/post/57ffcb2e1179b.html', +        'only_matching': True, +    }]      def _real_extract(self, url):          video_id = self._match_id(url)  | 
