示例#1
0
    def fetch_trending_tags(self):
        """
        Fetch trending illustrations and tags.

        :return: A list of dicts containing an illustration, the tag name, and the tag
            translation.

        .. code-block:: python

           [
               {
                   'illustration': Illustration,
                   'tag': '艦これ',
                   'translated_name': 'Kancolle',
               },
               ...
           ]

        :rtype: dict

        :raises requests.RequestException: If the request fails.
        :raises BadApiResponse: If the response is not valid JSON.
        """
        response = self._request_json(
            method="get",
            url=f"{BASE_URL}/v1/trending-tags/illust",
            params={"filter": FILTER},
        )

        return [{
            "illustration": Illustration(**trending["illust"]),
            "tag": trending["tag"],
            "translated_name": trending["translated_name"],
        } for trending in response["trend_tags"]]
示例#2
0
    def search_illustrations(
        self,
        word,
        search_target=SearchTarget.TAGS_PARTIAL,
        sort=Sort.DATE_DESC,
        duration=None,
        offset=None,
    ):
        """
        Search the illustrations. A maximum of 30 illustrations are returned in one
        response.

        :param str word: The search term.
        :param SearchTarget search_target: The target for the search term.
        :param Sort sort: How to sort the illustrations.
        :param Duration duration: An optional max-age for the illustrations.
        :param int offset: The number of illustrations to offset by.

        :return: A dictionary containing the searched illustrations, the offset for the
            next page of search images (``None`` if there is no next page), and the
            search span limit.

        .. code-block:: python

           {
               'illustrations': [Illustration, ...],  # List of illustrations.
               'next': 30,  # Offset to get the next page of illustrations.
               'search_span_limit': 31536000,
           }

        :rtype: dict

        :raises requests.RequestException: If the request fails.
        :raises BadApiResponse: If the response is not valid JSON.
        """
        response = self._request_json(
            method="get",
            url=f"{BASE_URL}/v1/search/illust",
            params={
                "word": word,
                "search_target": search_target.value,
                "sort": sort.value,
                "duration": duration.value if duration else None,
                "offset": offset,
                "filter": FILTER,
            },
        )

        return {
            "illustrations": [
                Illustration(**illust, client=self)
                for illust in response["illusts"]
            ],
            "next":
            parse_qs(response["next_url"], param="offset"),
            "search_span_limit":
            response["search_span_limit"],
        }
示例#3
0
    def fetch_user_bookmarks(
        self,
        user_id,
        visibility=Visibility.PUBLIC,
        max_bookmark_id=None,
        tag=None,
    ):
        """
        Fetch the illustrations bookmarked by a user. A maximum of TODO
        illustrations are returned in a response.

        :param int user_id: The ID of the user.
        :param Visibility visibility: The visibility of the bookmarks.
            Applies only to requests for one's own bookmarks. If set to
            ``Visibility.PRIVATE`` for another user, their public bookmarks
            will be returned.
        :param int max_bookmark_id: The ID of the maximum bookmark,
            similar to ``offset`` for other endpoints.
        :param str tag: The bookmark tag to filter bookmarks by. These tags
            can be fetched from ``Client.fetch_user_bookmark_tags``.

        :return: A dictionary containing the user's bookmarks and the
            max_bookmark_id needed to get the next page of their
            bookmarks. If there is no next page, ``max_bookmark_id``
            will be ``None``.

        .. code-block:: python

           {
               'illustrations': [Illustration, ...],  # List of illustrations.
               'next': 30,  # `max_bookmark_id` for the next page of bookmarks.
           }

        :rtype: dict

        :raises requests.RequestException: If the request fails.
        :raises BadApiResponse: If the response is not valid JSON.
        """
        response = self._request_json(
            method='get',
            url=f'{BASE_URL}/v1/user/bookmarks/illust',
            params={
                'user_id': user_id,
                'restrict': visibility.value,
                'max_bookmark_id': max_bookmark_id,
                'tag': tag,
            },
        )

        return {
            'illustrations': [
                Illustration(**illust, client=self)
                for illust in response['illusts']
            ],
            'next':
            parse_qs(response['next_url'], param='max_bookmark_id'),
        }
示例#4
0
    def fetch_user_illustrations(
        self,
        user_id,
        content_type=ContentType.ILLUSTRATION,
        offset=None,
    ):
        """
        Fetch the illustrations posted by a user.

        :param int user_id: The ID of the user.
        :param ContentType content_type: The type of content to fetch. Accepts
            ``ILLUSTRATION`` and ``MANGA``.
        :param int offset: The number of illustrations/manga to offset by.

        :return: A dictionary containing the user's illustrations and the offset to get
            the next page of their illustrations. If there is no next page, ``offset``
            will be ``None``.

        .. code-block:: python

           {
               'illustrations': [Illustration, ...],  # List of illustrations.
               'next': 30,  # Offset to get the next page of illustrations.
           }

        :rtype: dict

        :raises requests.RequestException: If the request fails.
        :raises BadApiResponse: If the response is not valid JSON.
        """
        response = self._request_json(
            method="get",
            url=f"{BASE_URL}/v1/user/illusts",
            params={
                "user_id": user_id,
                "type": content_type.value if content_type else None,
                "offset": offset,
                "filter": FILTER,
            },
        )

        return {
            "illustrations": [
                Illustration(**illust, client=self)
                for illust in response["illusts"]
            ],
            "next":
            parse_qs(response["next_url"], param="offset"),
        }
示例#5
0
    def fetch_illustrations_ranking(self,
                                    mode=RankingMode.DAY,
                                    date=None,
                                    offset=None):
        """
        Fetch the ranking illustrations. A maximum of 30 illusrations are returned in
        one response.

        :param RankingMode mode: The ranking list to fetch.
        :param str date: The date of the list, in ``%Y-%m-%d`` format.
        :param int offset: The number of illustrations to offset by.

        :return: A dictionary containing the ranking illustrations and the offset for
            the next page of illustrations.

        .. code-block:: python

           {
               'illustrations': [Illustration, ...],  # List of illustrations.
               'next': 30,  # Offset to get the next page of illustrations.
           }

        :rtype: dict

        :raises requests.RequestException: If the request fails.
        :raises BadApiResponse: If the response is not valid JSON.
        """
        response = self._request_json(
            method="get",
            url=f"{BASE_URL}/v1/illust/ranking",
            params={
                "mode": mode.value,
                "date": date,
                "offset": offset,
                "filter": FILTER,
            },
        )

        return {
            "illustrations": [
                Illustration(**illust, client=self)
                for illust in response["illusts"]
            ],
            "next":
            parse_qs(response["next_url"], param="offset"),
        }
示例#6
0
    def fetch_illustrations_following(self,
                                      visibility=Visibility.PUBLIC,
                                      offset=None):
        """
        Fetch new illustrations from followed artists. A maximum of 30 illustrations are
        returned in one response.

        :param Visibility visibility: Visibility of the followed artist; ``PUBLIC`` if
            publicly followed; ``PRIVATE`` if privately.
        :param int offset: The number of illustrations to offset by.

        :return: A dictionary containing the new illustrations and the offset for the
            next page of illustrations.

        .. code-block:: python

           {
               'illustrations': [Illustration, ...],  # List of illustrations.
               'next': 30,  # Offset to get the next page of illustrations.
           }

        :rtype: dict

        :raises requests.RequestException: If the request fails.
        :raises BadApiResponse: If the response is not valid JSON.
        """
        response = self._request_json(
            method="get",
            url=f"{BASE_URL}/v2/illust/follow",
            params={
                "restrict": visibility.value,
                "offset": offset
            },
        )

        return {
            "illustrations": [
                Illustration(**illust, client=self)
                for illust in response["illusts"]
            ],
            "next":
            parse_qs(response["next_url"], param="offset"),
        }
示例#7
0
    def fetch_illustration(self, illustration_id):
        """
        Fetch the details of a single illustration.

        :param int illustration_id: The ID of the illustration.

        :return: An illustration object.
        :rtype: Illustration

        :raises requests.RequestException: If the request fails.
        :raises BadApiResponse: If the response is not valid JSON.
        """
        return Illustration(
            **self._request_json(
                method="get",
                url=f"{BASE_URL}/v1/illust/detail",
                params={"illust_id": illustration_id},
            )["illust"],
            client=self,
        )
示例#8
0
    def fetch_illustration_related(self, illustration_id, offset=None):
        """
        Fetch illustrations related to a specified illustration. A maximum of 30
        illustrations are returned in one response.

        :param int illustration_id: ID of the illustration.
        :param int offset: Illustrations to offset by.

        :return: A dictionary containing the related illustrations and the offset for
        the next page of illustrations.

        .. code-block:: python

           {
               'illustrations': [Illustration, ...],  # List of illustrations.
               'next': 30,  # Offset to get the next page of illustrations.
           }

        :rtype: dict

        :raises requests.RequestException: If the request fails.
        :raises BadApiResponse: If the response is not valid JSON.
        """
        response = self._request_json(
            method="get",
            url=f"{BASE_URL}/v2/illust/related",
            params={
                "illust_id": illustration_id,
                "offset": offset
            },
        )

        return {
            "illustrations": [
                Illustration(**illust, client=self)
                for illust in response["illusts"]
            ],
            "next":
            parse_qs(response["next_url"], param="offset"),
        }
示例#9
0
    def fetch_followers(self, offset=None):
        """
        Fetch the users that are following the requesting user.

        :param int offset: The number of users to offset by.

        :return: A dictionary containing the a list of previews for the users that
            follow the the requesting user and and the offset needed to get the next
            page of user previews. If there is no next page, ``offset`` will be
            ``None``.

        .. code-block:: python

           {
               'user_previews': [  # List of bookmark tags.
                   {
                       'illustrations': [  # Their 3 most recent illustrations.
                           Illustration,
                           Illustration,
                           Illustration,
                       ],
                       'is_muted': False,  # Are they muted?
                       'novels': [   # Preview of their novels.
                           Novel,
                           Novel,
                           Novel,
                       ],
                       'user': User,  # Basic information about the user.
                   },
                   ...
               ],
               'next': 30,  # Offset for the next page of user previews.
           }

        :rtype: dict

        :raises requests.RequestException: If the request fails.
        :raises BadApiResponse: If the response is not valid JSON.
        """
        response = self._request_json(
            method="get",
            url=f"{BASE_URL}/v1/user/follower",
            params={
                "offset": offset,
                "filter": FILTER
            },
        )

        return {
            "user_previews": [{
                "illustrations": [
                    Illustration(**illust, client=self)
                    for illust in preview["illusts"]
                ],
                "is_muted":
                preview["is_muted"],
                "novels":
                [Novel(**novel, client=self) for novel in preview["novels"]],
                "user":
                User(**preview["user"]),
            } for preview in response["user_previews"]],
            "next":
            parse_qs(response["next_url"], param="offset"),
        }
示例#10
0
    def fetch_following(self,
                        user_id,
                        visibility=Visibility.PUBLIC,
                        offset=None):
        """
        Fetch the users that a user is following. A maximum of 30 users are returned in
        a response.

        :param int user_id: The ID of the user.
        :param Visibility visibility: The visibility of the followed users. Applies only
            to one's own follows. If ``Visibility.PRIVATE`` is applied to another user,
            their publicly followed users will be returned.
        :param int offset: The number of users to offset by.

        :return: A dictionary containing the a list of previews for the followed users
            and and the offset needed to get the next page of user previews. If there is
            no next page, ``offset`` will be ``None``.

        .. code-block:: python

           {
               'user_previews': [  # List of bookmark tags.
                   {
                       'illustrations': [  # Their 3 most recent illustrations.
                           Illustration,
                           Illustration,
                           Illustration,
                       ],
                       'is_muted': False,  # Are they muted?
                       'novels': [   # Their 3 most recent novels.
                           Novel,
                           Novel,
                           Novel,
                       ],
                       'user': User,  # Basic information about the user.
                   },
                   ...
               ],
               'next': 30,  # Offset for the next page of user previews.
           }

        :rtype: dict

        :raises requests.RequestException: If the request fails.
        :raises BadApiResponse: If the response is not valid JSON.
        """
        response = self._request_json(
            method="get",
            url=f"{BASE_URL}/v1/user/following",
            params={
                "user_id": user_id,
                "restrict": visibility.value,
                "offset": offset,
            },
        )

        return {
            "user_previews": [{
                "illustrations": [
                    Illustration(**illust, client=self)
                    for illust in preview["illusts"]
                ],
                "is_muted":
                preview["is_muted"],
                "novels":
                [Novel(**novel, client=self) for novel in preview["novels"]],
                "user":
                User(**preview["user"]),
            } for preview in response["user_previews"]],
            "next":
            parse_qs(response["next_url"], param="offset"),
        }
示例#11
0
    def fetch_illustrations_recommended(
        self,
        content_type=ContentType.ILLUSTRATION,
        include_ranking_illustrations=False,
        max_bookmark_id_for_recommend=None,
        min_bookmark_id_for_recent_illustrations=None,
        offset=None,
        bookmark_illust_ids=None,
        include_ranking_label=True,
    ):
        """
        Fetch one's recommended illustrations.

        :param ContentType content_type: The type of content to fetch. Accepts
            ``ILLUSTRATION`` and ``MANGA``.
        :param bool include_ranking_illustrations: If ``True``, the top 10 ranked
            illustrations daily are included in the response. If False, the
            ``ranking_illustrations`` key in the response dict will be empty.
        :param int max_bookmark_id_for_recommend: The maximum bookmark ID for
            recommended illustrations, used for changing the returned illustrations.
        :param int min_bookmark_id_for_recent_illustrations: The minimum bookmark ID for
            recent illustrations, used for changing the returned illustrations.
        :param int offset: The number of illustrations to offset by.
        :param list bookmark_illust_ids: A list of illustration IDs.
        :param bool include_ranking_label: Whether or not to include the ranking label.

        :return: A dictionary containing the recommended illustrations and the
            parameters for the next page of illustrations.

        .. code-block:: python

           {
               'contest_exists': False,  # Does a contest exist?
               'illustrations': [Illustration, ...],  # List of illustrations.
               'next': {  # Parameters to get the next set of illustrations.
                   'min_bookmark_id_for_recent_illustrations': 6277740037,
                   'max_bookmark_id_for_recommend': 6268205545,
                   'offset': 0,
               },
               'ranking_illustrations': [Illustration, ...] # Ranking illust.
           }

        :rtype: dict

        :raises requests.RequestException: If the request fails.
        :raises BadApiResponse: If the response is not valid JSON.
        """
        if bookmark_illust_ids:
            bookmark_illust_ids = ",".join(
                str(bid) for bid in bookmark_illust_ids)

        response = self._request_json(
            method="get",
            url=f"{BASE_URL}/v1/illust/recommended",
            params={
                "content_type":
                content_type.value,
                "include_ranking_label":
                format_bool(include_ranking_label),
                "max_bookmark_id_for_recommend":
                max_bookmark_id_for_recommend,
                "min_bookmark_id_for_recent_illust":
                (min_bookmark_id_for_recent_illustrations, ),
                "offset":
                offset,
                "include_ranking_illusts":
                format_bool(include_ranking_illustrations),
                "bookmark_illust_ids":
                bookmark_illust_ids,
            },
        )
        return {
            "contest_exists":
            response["contest_exists"],
            "illustrations": [
                Illustration(**illust, client=self)
                for illust in response["illusts"]
            ],
            "next": {
                "min_bookmark_id_for_recent_illustrations": (parse_qs(
                    response["next_url"],
                    param="min_bookmark_id_for_recent_illust",
                )),
                "max_bookmark_id_for_recommend": (parse_qs(
                    response["next_url"],
                    param="max_bookmark_id_for_recommend",
                )),
                "offset":
                parse_qs(response["next_url"], param="offset"),
            },
            "ranking_illustrations": [
                Illustration(**illust, client=self)
                for illust in response["ranking_illusts"]
            ],
        }