Get All Series#

Endpoint: /get_all_series

guyamoe_api_types.all_series.AllSeries#

The root JSON document for all series is a dictionary where the keys are the title of the series and the values are the SeriesSummary for that series.

A sample JSON document can be found at https://guya.moe/api/get_all_series/.

alias of Dict[str, SeriesSummary]

class guyamoe_api_types.all_series.SeriesSummary(data: Dict[str, Any])#
class guyamoe_api_types.all_series.SeriesSummary(**attrs: Any) SeriesSummary

Bases: dict

A series dictionary that contains a subset of the attributes found on a normal Series. This is returned on the API endpoint for all series.

artist: str#

The artist of the series.

author: str#

The author of the series.

cover: str#

A Relative URL to the primary cover image of the series.

description: str#

The description of the series. May or may not contain HTML.

groups: Dict[str, str]#

A dictionary of group IDs and their respective names.

Note

The groups dictionary is the same dictionary for all series when obtained via the /get_all_series endpoint. This dictionary may be different from the one obtained from the individual series endpoint.

last_updated: float#

The Unix timestamp of when the series was last updated.

slug: str#

The slug of the series.