1 from .common
import InfoExtractor
4 class GrouponIE(InfoExtractor
):
5 _VALID_URL
= r
'https?://(?:www\.)?groupon\.com/deals/(?P<id>[^/?#&]+)'
8 'url': 'https://www.groupon.com/deals/bikram-yoga-huntington-beach-2#ooid=tubGNycTo_9Uxg82uESj4i61EYX8nyuf',
10 'id': 'bikram-yoga-huntington-beach-2',
11 'title': '$49 for 10 Yoga Classes or One Month of Unlimited Classes at Bikram Yoga Huntington Beach ($180 Value)',
12 'description': 'Studio kept at 105 degrees and 40% humidity with anti-microbial and anti-slip Flotex flooring; certified instructors',
15 'md5': '42428ce8a00585f9bc36e49226eae7a1',
19 'title': 'Bikram Yoga Huntington Beach | Orange County !tubGNycTo@9Uxg82uESj4i61EYX8nyuf',
20 'description': 'md5:d41d8cd98f00b204e9800998ecf8427e',
22 'upload_date': '20160405',
23 'uploader_id': 'groupon',
24 'uploader': 'Groupon',
26 'add_ie': ['Youtube'],
29 'skip_download': True,
34 'youtube': ('%s', 'Youtube'),
37 def _real_extract(self
, url
):
38 playlist_id
= self
._match
_id
(url
)
39 webpage
= self
._download
_webpage
(url
, playlist_id
)
41 payload
= self
._parse
_json
(self
._search
_regex
(
42 r
'(?:var\s+|window\.)payload\s*=\s*(.*?);\n', webpage
, 'payload'), playlist_id
)
43 videos
= payload
['carousel'].get('dealVideos', [])
46 provider
= v
.get('provider')
47 video_id
= v
.get('media') or v
.get('id') or v
.get('baseURL')
48 if not provider
or not video_id
:
50 url_pattern
, ie_key
= self
._PROVIDERS
.get(provider
.lower())
53 f
'{playlist_id}: Unsupported video provider {provider}, skipping video')
55 entries
.append(self
.url_result(url_pattern
% video_id
, ie_key
))
61 'title': self
._og
_search
_title
(webpage
),
62 'description': self
._og
_search
_description
(webpage
),