Skip to content

Creator

BaseCreator(**data: Any)

Bases: BaseModel

Contains fields for all Creators.

ATTRIBUTE DESCRIPTION
aliases

List of names used by the Creator, separated by ~\r\n

TYPE: Optional[str]

api_url

Url to the resource in the Comicvine API.

TYPE: str

country

Country of origin.

TYPE: Optional[str]

date_added

Date and time when the Creator was added.

TYPE: datetime

date_last_updated

Date and time when the Creator was last updated.

TYPE: datetime

date_of_birth

Date when the Creator was born.

TYPE: Optional[date]

date_of_death

Date when the Creator died.

TYPE: Optional[date]

description

Long description of the Creator.

TYPE: Optional[str]

email

Email address of the Creator.

TYPE: Optional[str]

gender

Creator gender.

TYPE: int

hometown

Hometown of the Creator.

TYPE: Optional[str]

creator_id

Identifier used by Comicvine.

TYPE: int

image

Different sized images, posters and thumbnails for the Creator.

TYPE: ImageEntry

issue_count

Number of issues the Creator appears in.

TYPE: Optional[int]

name

Name/Title of the Creator.

TYPE: str

site_url

Url to the resource in Comicvine.

TYPE: str

summary

Short description of the Creator.

TYPE: Optional[str]

website

Url to the Creator's website.

TYPE: Optional[str]

Attributes

alias_list: List[str] property

List of aliases the Creator has used.

RETURNS DESCRIPTION
List[str]

List of aliases, split by ~\r\n

Creator

Bases: BaseCreator

Extends BaseCreator by including all the list references of a creator.

ATTRIBUTE DESCRIPTION
characters

List of characters the Creator has created.

TYPE: List[GenericEntry]

issues

List of issues the Creator appears in.

TYPE: List[GenericEntry]

story_arcs

List of story arcs the Creator appears in.

TYPE: List[GenericEntry]

volumes

List of volumes the Creator appears in.

TYPE: List[GenericEntry]

CreatorEntry

Bases: BaseCreator

Contains all the fields available when viewing a list of Creators.