1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249
|
from ytmusicapi.continuations import *
from ytmusicapi.mixins._protocol import MixinProtocol
from ytmusicapi.navigation import *
from ytmusicapi.parsers.browsing import parse_content_list
from ytmusicapi.parsers.playlists import parse_playlist_header
from ytmusicapi.parsers.podcasts import *
from ._utils import *
class PodcastsMixin(MixinProtocol):
"""Podcasts Mixin"""
def get_channel(self, channelId: str) -> dict:
"""
Get information about a podcast channel (episodes, podcasts). For episodes, a
maximum of 10 episodes are returned, the full list of episodes can be retrieved
via :py:func:`get_channel_episodes`
:param channelId: channel id
:return: Dict containing channel info
Example::
{
"title": 'Stanford Graduate School of Business',
"thumbnails": [...]
"episodes":
{
"browseId": "UCGwuxdEeCf0TIA2RbPOj-8g",
"results":
[
{
"index": 0,
"title": "The Brain Gain: The Impact of Immigration on American Innovation with Rebecca Diamond",
"description": "Immigrants' contributions to America ...",
"duration": "24 min",
"videoId": "TS3Ovvk3VAA",
"browseId": "MPEDTS3Ovvk3VAA",
"videoType": "MUSIC_VIDEO_TYPE_PODCAST_EPISODE",
"date": "Mar 6, 2024",
"thumbnails": [...]
},
],
"params": "6gPiAUdxWUJXcFlCQ3BN..."
},
"podcasts":
{
"browseId": null,
"results":
[
{
"title": "Stanford GSB Podcasts",
"channel":
{
"id": "UCGwuxdEeCf0TIA2RbPOj-8g",
"name": "Stanford Graduate School of Business"
},
"browseId": "MPSPPLxq_lXOUlvQDUNyoBYLkN8aVt5yAwEtG9",
"podcastId": "PLxq_lXOUlvQDUNyoBYLkN8aVt5yAwEtG9",
"thumbnails": [...]
}
]
}
}
"""
body = {"browseId": channelId}
endpoint = "browse"
response = self._send_request(endpoint, body)
channel = {
"title": nav(response, [*HEADER_MUSIC_VISUAL, *TITLE_TEXT]),
"thumbnails": nav(response, [*HEADER_MUSIC_VISUAL, *THUMBNAILS]),
}
results = nav(response, SINGLE_COLUMN_TAB + SECTION_LIST)
channel.update(self.parser.parse_channel_contents(results))
return channel
def get_channel_episodes(self, channelId: str, params: str) -> list[dict]:
"""
Get all channel episodes. This endpoint is currently unlimited
:param channelId: channelId of the user
:param params: params obtained by :py:func:`get_channel`
:return: List of channel episodes in the format of :py:func:`get_channel` "episodes" key
"""
body = {"browseId": channelId, "params": params}
endpoint = "browse"
response = self._send_request(endpoint, body)
results = nav(response, SINGLE_COLUMN_TAB + SECTION_LIST_ITEM + GRID_ITEMS)
return parse_content_list(results, parse_episode, MMRIR)
def get_podcast(self, playlistId: str, limit: Optional[int] = 100) -> dict:
"""
Returns podcast metadata and episodes
.. note::
To add a podcast to your library, you need to call ``rate_playlist`` on it
:param playlistId: Playlist id
:param limit: How many songs to return. ``None`` retrieves them all. Default: 100
:return: Dict with podcast information
Example::
{
"author":
{
"name": "Stanford Graduate School of Business",
"id": "UCGwuxdEeCf0TIA2RbPOj-8g"
},
"title": "Think Fast, Talk Smart: The Podcast",
"description": "Join Matt Abrahams, a lecturer of...",
"saved": false,
"episodes":
[
{
"index": 0,
"title": "132. Lean Into Failure: How to Make Mistakes That Work | Think Fast, Talk Smart: Communication...",
"description": "Effective and productive teams and...",
"duration": "25 min",
"videoId": "xAEGaW2my7E",
"browseId": "MPEDxAEGaW2my7E",
"videoType": "MUSIC_VIDEO_TYPE_PODCAST_EPISODE",
"date": "Mar 5, 2024",
"thumbnails": [...]
}
]
}
"""
browseId = "MPSP" + playlistId if not playlistId.startswith("MPSP") else playlistId
body = {"browseId": browseId}
endpoint = "browse"
response = self._send_request(endpoint, body)
two_columns = nav(response, TWO_COLUMN_RENDERER)
header = nav(two_columns, [*TAB_CONTENT, *SECTION_LIST_ITEM, *RESPONSIVE_HEADER])
podcast = parse_podcast_header(header)
results = nav(two_columns, ["secondaryContents", *SECTION_LIST_ITEM, *MUSIC_SHELF])
parse_func = lambda contents: parse_content_list(contents, parse_episode, MMRIR)
episodes = parse_func(results["contents"])
if "continuations" in results:
request_func = lambda additionalParams: self._send_request(endpoint, body, additionalParams)
remaining_limit = None if limit is None else (limit - len(episodes))
episodes.extend(
get_continuations(
results, "musicShelfContinuation", remaining_limit, request_func, parse_func
)
)
podcast["episodes"] = episodes
return podcast
def get_episode(self, videoId: str) -> dict:
"""
Retrieve episode data for a single episode
.. note::
To save an episode, you need to call ``add_playlist_items`` to add
it to the ``SE`` (saved episodes) playlist.
:param videoId: browseId (MPED..) or videoId for a single episode
:return: Dict containing information about the episode
The description elements are based on a custom dataclass, not shown in the example below
The description text items also contain "\\n" to indicate newlines, removed below due to RST issues
Example::
{
"author":
{
"name": "Stanford GSB Podcasts",
"id": "MPSPPLxq_lXOUlvQDUNyoBYLkN8aVt5yAwEtG9"
},
"title": "124. Making Meetings Me...",
"date": "Jan 16, 2024",
"duration": "25 min",
"saved": false,
"playlistId": "MPSPPLxq_lXOUlvQDUNyoBYLkN8aVt5yAwEtG9",
"description":
[
{
"text": "Delve into why people hate meetings, ... Karin Reed ("
},
{
"text": "https://speakerdynamics.com/team/",
"url": "https://speakerdynamics.com/team/"
},
{
"text": ")Chapters:("
},
{
"text": "00:00",
"seconds": 0
},
{
"text": ") Introduction Host Matt Abrahams...("
},
{
"text": "01:30",
"seconds": 90
},
]
}
"""
browseId = "MPED" + videoId if not videoId.startswith("MPED") else videoId
body = {"browseId": browseId}
endpoint = "browse"
response = self._send_request(endpoint, body)
two_columns = nav(response, TWO_COLUMN_RENDERER)
header = nav(two_columns, [*TAB_CONTENT, *SECTION_LIST_ITEM, *RESPONSIVE_HEADER])
episode = parse_episode_header(header)
description_runs = nav(
two_columns, ["secondaryContents", *SECTION_LIST_ITEM, *DESCRIPTION_SHELF, "description", "runs"]
)
episode["description"] = Description.from_runs(description_runs)
return episode
def get_episodes_playlist(self, playlist_id: str = "RDPN") -> dict:
"""
Get all episodes in an episodes playlist. Currently the only known playlist is the
"New Episodes" auto-generated playlist
:param playlist_id: Playlist ID, defaults to "RDPN", the id of the New Episodes playlist
:return: Dictionary in the format of :py:func:`get_podcast`
"""
browseId = "VL" + playlist_id if not playlist_id.startswith("VL") else playlist_id
body = {"browseId": browseId}
endpoint = "browse"
response = self._send_request(endpoint, body)
playlist = parse_playlist_header(response)
results = nav(response, [*TWO_COLUMN_RENDERER, "secondaryContents", *SECTION_LIST_ITEM, *MUSIC_SHELF])
parse_func = lambda contents: parse_content_list(contents, parse_episode, MMRIR)
playlist["episodes"] = parse_func(results["contents"])
return playlist
|