Skip to content

ReadingList

AttributionSource

Bases: str, Enum

Enumeration of attribution sources for reading lists.

ATTRIBUTE DESCRIPTION
CBRO

Comic Book Reading Orders

CMRO

Complete Marvel Reading Orders

CBH

Comic Book Herald

CBT

Comic Book Treasury

MG

Marvel Guides

HTLC

How To Love Comics

LOCG

League of ComicGeeks

OTHER

Other sources

BaseReadingList

Bases: BaseModel

A data model representing a reading list in list view.

ATTRIBUTE DESCRIPTION
id

The unique identifier of the reading list.

TYPE: int

name

The name of the reading list.

TYPE: str

slug

The slug for the reading list.

TYPE: str

user

The user who owns the reading list.

TYPE: User

list_type

The type of the reading list.

TYPE: EventType

is_private

Whether this list is private (only visible to the owner).

TYPE: bool | None

attribution_source

Source where this reading list information was obtained.

TYPE: AttributionSource | None

average_rating

The average rating of the reading list.

TYPE: Decimal

rating_count

The number of ratings for the reading list.

TYPE: int

modified

The date and time when the reading list was last modified.

TYPE: datetime

EventType

Bases: str, Enum

Enumeration of event types for reading lists.

ATTRIBUTE DESCRIPTION
EVENT

Event

STORY

Story

CHARACTERS

Characters

TEAMS

Teams

MASTER

Master

ReadingList

Bases: BaseReadingList

A data model representing a reading list in detailed view.

ATTRIBUTE DESCRIPTION
desc

The description of the reading list.

TYPE: str | None

attribution_url

URL of the specific page where this reading list was obtained.

TYPE: HttpUrl | None

items_url

URL to the paginated items' endpoint.

TYPE: HttpUrl

resource_url

URL of the reading list resource.

TYPE: HttpUrl

ReadingListItem

Bases: BaseModel

A data model representing an item in a reading list.

ATTRIBUTE DESCRIPTION
id

The unique identifier of the reading list item.

TYPE: int

issue

The issue associated with this reading list item.

TYPE: ReadingListIssue

order

Position of this issue in the reading list.

TYPE: int | None

issue_type

The type of the issue.

TYPE: str