3 from .common
import InfoExtractor
6 class AtScaleConfEventIE(InfoExtractor
):
7 _VALID_URL
= r
'https?://(?:www\.)?atscaleconference\.com/events/(?P<id>[^/&$?]+)'
10 'url': 'https://atscaleconference.com/events/data-scale-spring-2022/',
11 'playlist_mincount': 13,
13 'id': 'data-scale-spring-2022',
14 'title': 'Data @Scale Spring 2022',
15 'description': 'md5:7d7ca1c42ac9c6d8a785092a1aea4b55',
18 'url': 'https://atscaleconference.com/events/video-scale-2021/',
19 'playlist_mincount': 14,
21 'id': 'video-scale-2021',
22 'title': 'Video @Scale 2021',
23 'description': 'md5:7d7ca1c42ac9c6d8a785092a1aea4b55',
27 def _real_extract(self
, url
):
28 playlist_id
= self
._match
_id
(url
)
29 webpage
= self
._download
_webpage
(url
, playlist_id
)
31 return self
.playlist_from_matches(
32 re
.findall(r
'data-url\s*=\s*"(https?://(?:www\.)?atscaleconference\.com/videos/[^"]+)"', webpage
),
33 ie
='Generic', playlist_id
=playlist_id
,
34 title
=self
._og
_search
_title
(webpage
), description
=self
._og
_search
_description
(webpage
))