Skip to content

Location

BaseLocation

Bases: BaseModel

Contains fields for all Locations.

ATTRIBUTE DESCRIPTION
aliases

List of names used by the Location, collected in a string.

TYPE: str | None

api_url

Url to the resource in the Comicvine API.

TYPE: str

date_added

Date and time when the Location was added.

TYPE: datetime

date_last_updated

Date and time when the Location was last updated.

TYPE: datetime

description

Long description of the Location.

TYPE: str | None

first_issue

First issue the Location appeared in.

TYPE: IssueEntry | None

id

Identifier used by Comicvine.

TYPE: int

image

Different sized images, posters and thumbnails for the Location.

TYPE: Image

issue_count

Number of issues the Location appears in.

TYPE: int | None

name

Name/Title of the Location.

TYPE: str

site_url

Url to the resource in Comicvine.

TYPE: str

start_year

The year the Location was first used.

TYPE: int | None

summary

Short description of the Location.

TYPE: str | None

Location

Bases: BaseLocation

Extends BaseLocation by including all the list references of a location.

ATTRIBUTE DESCRIPTION
issues

List of issues the Location appears in.

TYPE: list[IssueEntry]

story_arcs

List of story arcs the Location appears in.

TYPE: list[GenericEntry]

volumes

List of volumes the Location appears in.

TYPE: list[GenericEntry]

LocationEntry

Bases: BaseLocation

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