diff --git a/tidalapi/session.py b/tidalapi/session.py index 8df3288..fa854d6 100644 --- a/tidalapi/session.py +++ b/tidalapi/session.py @@ -950,6 +950,14 @@ def explore(self) -> page.Page: """ return self.page.get("pages/explore") + def hires_page(self) -> page.Page: + """ + Retrieves the HiRes page, as seen on https://listen.tidal.com/view/pages/hires + + :return: A :class:`.Page` object with the :class:`.PageCategory` list from the explore page + """ + return self.page.get("pages/hires") + def for_you(self) -> page.Page: """ Retrieves the For You page, as seen on https://listen.tidal.com/view/pages/for_you diff --git a/tidalapi/user.py b/tidalapi/user.py index 0b00ced..d233070 100644 --- a/tidalapi/user.py +++ b/tidalapi/user.py @@ -386,9 +386,9 @@ def videos(self) -> List["Video"]: ) def mixes(self, limit: Optional[int] = 50, offset: int = 0) -> List["MixV2"]: - """Get the users favorite tracks. + """Get the users favorite mixes & radio. - :return: A :class:`list` of :class:`~tidalapi.media.Track` objects containing all of the favorite tracks. + :return: A :class:`list` of :class:`~tidalapi.media.Mix` objects containing the user favourite mixes & radio """ params = {"limit": limit, "offset": offset} return cast(