mirror of
https://github.com/yt-dlp/yt-dlp.git
synced 2024-11-02 14:37:21 +00:00
[extractor/yappy] YappyProfile: Add extractor (#7346)
Authored by: 7vlad7
This commit is contained in:
parent
81c8b9bdd9
commit
6f69101dc9
|
@ -2427,7 +2427,10 @@
|
||||||
ZenYandexChannelIE,
|
ZenYandexChannelIE,
|
||||||
)
|
)
|
||||||
from .yapfiles import YapFilesIE
|
from .yapfiles import YapFilesIE
|
||||||
from .yappy import YappyIE
|
from .yappy import (
|
||||||
|
YappyIE,
|
||||||
|
YappyProfileIE,
|
||||||
|
)
|
||||||
from .yesjapan import YesJapanIE
|
from .yesjapan import YesJapanIE
|
||||||
from .yinyuetai import YinYueTaiIE
|
from .yinyuetai import YinYueTaiIE
|
||||||
from .yle_areena import YleAreenaIE
|
from .yle_areena import YleAreenaIE
|
||||||
|
|
|
@ -1,9 +1,10 @@
|
||||||
from .common import InfoExtractor
|
from .common import InfoExtractor
|
||||||
from ..utils import (
|
from ..utils import (
|
||||||
|
OnDemandPagedList,
|
||||||
int_or_none,
|
int_or_none,
|
||||||
traverse_obj,
|
traverse_obj,
|
||||||
unified_timestamp,
|
unified_timestamp,
|
||||||
url_or_none
|
url_or_none,
|
||||||
)
|
)
|
||||||
|
|
||||||
|
|
||||||
|
@ -97,3 +98,30 @@ def _real_extract(self, url):
|
||||||
'categories': traverse_obj(media_data, ('categories', ..., 'name')) or None,
|
'categories': traverse_obj(media_data, ('categories', ..., 'name')) or None,
|
||||||
'repost_count': int_or_none(media_data.get('sharingCount'))
|
'repost_count': int_or_none(media_data.get('sharingCount'))
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
|
class YappyProfileIE(InfoExtractor):
|
||||||
|
_VALID_URL = r'https?://yappy\.media/profile/(?P<id>\w+)'
|
||||||
|
_TESTS = [{
|
||||||
|
'url': 'https://yappy.media/profile/59a0c8c485e5410b9c43474bf4c6a373',
|
||||||
|
'info_dict': {
|
||||||
|
'id': '59a0c8c485e5410b9c43474bf4c6a373',
|
||||||
|
},
|
||||||
|
'playlist_mincount': 527,
|
||||||
|
}]
|
||||||
|
|
||||||
|
def _real_extract(self, url):
|
||||||
|
profile_id = self._match_id(url)
|
||||||
|
|
||||||
|
def fetch_page(page_num):
|
||||||
|
page_num += 1
|
||||||
|
videos = self._download_json(
|
||||||
|
f'https://yappy.media/api/video/list/{profile_id}?page={page_num}',
|
||||||
|
profile_id, f'Downloading profile page {page_num} JSON')
|
||||||
|
|
||||||
|
for video in traverse_obj(videos, ('results', lambda _, v: v['uuid'])):
|
||||||
|
yield self.url_result(
|
||||||
|
f'https://yappy.media/video/{video["uuid"]}', YappyIE,
|
||||||
|
video['uuid'], video.get('description'))
|
||||||
|
|
||||||
|
return self.playlist_result(OnDemandPagedList(fetch_page, 15), profile_id)
|
||||||
|
|
Loading…
Reference in a new issue