Skip to content

Item

BaseItem

Bases: BaseModel

Contains fields for all Items.

ATTRIBUTE DESCRIPTION
aliases

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

TYPE: Optional[str]

api_url

Url to the resource in the Comicvine API.

TYPE: str

date_added

Date and time when the Item was added.

TYPE: datetime

date_last_updated

Date and time when the Item was last updated.

TYPE: datetime

description

Long description of the Item.

TYPE: Optional[str]

first_issue

First issue the Item appeared in.

TYPE: Optional[IssueEntry]

image

Different sized images, posters and thumbnails for the Item.

TYPE: ImageEntry

issue_count

Number of issues the Item appears in.

TYPE: int

item_id

Identifier used by Comicvine.

TYPE: int

name

Name/Title of the Item.

TYPE: str

site_url

Url to the resource in Comicvine.

TYPE: str

start_year

The year the Item first appeared.

TYPE: Optional[int]

summary

Short description of the Item.

TYPE: Optional[str]

Attributes

alias_list: List[str] property

List of aliases the Item has used.

RETURNS DESCRIPTION
List[str]

List of aliases, split by ~\r\n

Item

Bases: BaseItem

Extends BaseItem by including all the list references of a item.

ATTRIBUTE DESCRIPTION
issues

List of issues the Item appears in.

TYPE: List[GenericEntry]

story_arcs

List of story arcs the Item appears in.

TYPE: List[GenericEntry]

volumes

List of volumes the Item appears in.

TYPE: List[GenericEntry]

ItemEntry

Bases: BaseItem

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