Skip to content

Comic

Character

Bases: BaseModel

The Character object contains information for a character.

ATTRIBUTE DESCRIPTION
date_added

Date and time when the Character was added.

TYPE: datetime

date_modified

Date and time when the Character was last updated.

TYPE: datetime

full_name

Full name of Character

TYPE: str

id

Identifier used by League of Comic Geeks.

TYPE: int

is_enabled

Unknown field

TYPE: bool

name

Name/Alias of Character.

TYPE: str

parent_id

Unknown field

TYPE: Optional[int]

parent_name

Unknown field

TYPE: Optional[str]

publisher_name

The publisher name of Character.

TYPE: str

type_id

Unknown field

TYPE: int

universe_id

Universe id this Character is from.

TYPE: Optional[int]

universe_name

Universe name this Character is from.

TYPE: Optional[str]

Comic(**data: Any)

Bases: BaseModel

The Comic object contains information for a comic.

ATTRIBUTE DESCRIPTION
characters

List of Characters in the Comic.

TYPE: List[Character]

collected_in

List of Comics this has been collected in.

TYPE: List[SearchResult]

creators

List of Creators associated with the Comic

TYPE: List[Creator]

date_added

Date and time when the Comic was added.

TYPE: datetime

date_modified

Date and time when the Comic was last updated.

TYPE: datetime

description

Description of the Comic.

TYPE: Optional[str]

format

Type of Comic.

TYPE: str

id

Identifier used by League of Comic Geeks.

TYPE: int

is_enabled

Unknown field

TYPE: bool

is_nsfw

Comic has been marked as NSFW

TYPE: bool

is_variant

Comic has been marked as Variant

TYPE: bool

isbn

ISBN identifier

TYPE: Optional[int]

key_events

List of Key Events taken place in the Comic.

TYPE: List[KeyEvent]

page_count

Count of pages in the Comic.

TYPE: int

parent_id

If it is a variant comic, id of the original comic.

TYPE: Optional[int]

parent_title

If it is a variant comic, title of the origin comic.

TYPE: Optional[str]

price

Price of Comic

TYPE: Optional[float]

release_date

The date the Comic was released.

TYPE: date

series

The series this Comic comes from.

TYPE: Series

sku

SKU identifier.

TYPE: str

title

Name/Title of the Comic.

TYPE: str

upc

UPC identifier.

TYPE: Optional[int]

variants

List of variants this Comic has.

TYPE: List[Variant]

Creator

Bases: BaseModel

The Creator object contains information for a creator.

ATTRIBUTE DESCRIPTION
id

Identifier used by League of Comic Geeks.

TYPE: int

name

Name/Title of the Creator.

TYPE: str

role

List of roles the Creator has in the comic. Separated by ,.

TYPE: str

role_id

List of role ids the Creator has in the comic. Separated by ,.

TYPE: str

Attributes

roles: Dict[int, str] property

Return a dict of role id and role name the Creator is attached to.

KeyEvent

Bases: BaseModel

The KeyEvent object contains information for a key event.

ATTRIBUTE DESCRIPTION
character_id

Identifier used by League of Comic Geeks.

TYPE: int

id

Identifier used by League of Comic Geeks.

TYPE: int

name

Name/Title of the Event.

TYPE: str

note

Unknown field

TYPE: Optional[str]

parent_name

Unknown field

TYPE: Optional[str]

type

Unknown field

TYPE: int

type_id

Identifier used by League of Comic Geeks.

TYPE: int

universe_name

Universe this Event took place in.

TYPE: str

Variant

Bases: BaseModel

The Variant object contains information for a variant comic.

ATTRIBUTE DESCRIPTION
date_modified

Date and time when the Variant was last updated.

TYPE: datetime

id

Identifier used by League of Comic Geeks.

TYPE: int

price

Price of the Variant.

TYPE: Optional[float]

release_date

The date the Variant was released.

TYPE: date

title

Name/Title of the Variant.

TYPE: str