aboutsummaryrefslogtreecommitdiffstats
path: root/hypervideo_dl/extractor/embedly.py
diff options
context:
space:
mode:
Diffstat (limited to 'hypervideo_dl/extractor/embedly.py')
-rw-r--r--hypervideo_dl/extractor/embedly.py14
1 files changed, 11 insertions, 3 deletions
diff --git a/hypervideo_dl/extractor/embedly.py b/hypervideo_dl/extractor/embedly.py
index a5820b2..483d018 100644
--- a/hypervideo_dl/extractor/embedly.py
+++ b/hypervideo_dl/extractor/embedly.py
@@ -1,6 +1,5 @@
-# coding: utf-8
-from __future__ import unicode_literals
-
+import re
+import urllib.parse
from .common import InfoExtractor
from ..compat import compat_urllib_parse_unquote
@@ -12,5 +11,14 @@ class EmbedlyIE(InfoExtractor):
'only_matching': True,
}]
+ @classmethod
+ def _extract_embed_urls(cls, url, webpage):
+ # Bypass suitable check
+ for mobj in re.finditer(r'class=["\']embedly-card["\'][^>]href=["\'](?P<url>[^"\']+)', webpage):
+ yield mobj.group('url')
+
+ for mobj in re.finditer(r'class=["\']embedly-embed["\'][^>]src=["\'][^"\']*url=(?P<url>[^&]+)', webpage):
+ yield urllib.parse.unquote(mobj.group('url'))
+
def _real_extract(self, url):
return self.url_result(compat_urllib_parse_unquote(self._match_id(url)))