Skip to content

Concept

BaseConcept

Bases: BaseModel

Contains fields for all Concepts.

ATTRIBUTE DESCRIPTION
aliases

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

TYPE: Optional[str]

api_url

Url to the resource in the Comicvine API.

TYPE: str

concept_id

Identifier used by Comicvine.

TYPE: int

date_added

Date and time when the Concept was added.

TYPE: datetime

date_last_updated

Date and time when the Concept was last updated.

TYPE: datetime

description

Long description of the Concept.

TYPE: Optional[str]

first_issue

First issue this concept appears.

TYPE: Optional[IssueEntry]

image

Different sized images, posters and thumbnails for the Concept.

TYPE: ImageEntry

issue_count

Number of issues with the Concept.

TYPE: int

name

Name/Title of the Concept.

TYPE: str

site_url

Url to the resource in Comicvine.

TYPE: str

start_year

Year the Concept first appeared.

TYPE: Optional[int]

summary

Short description of the Concept.

TYPE: Optional[str]

Attributes

alias_list: List[str] property

List of aliases the Concept has used.

RETURNS DESCRIPTION
List[str]

List of aliases, split by ~\r\n

Concept

Bases: BaseConcept

Extends BaseConcept by including all the list references of a concept.

ATTRIBUTE DESCRIPTION
issues

List of issues the Concept appears.

TYPE: List[IssueEntry]

volumes

List of volumes the Concept appears.

TYPE: List[GenericEntry]

ConceptEntry

Bases: BaseConcept

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