Issue
BasicIssue
Bases: BaseModel
Contains fields for all Issues.
| ATTRIBUTE | DESCRIPTION |
|---|---|
aliases |
List of names used by the Issue, collected in a string.
TYPE:
|
associated_images |
List of different images associated with the Issue.
TYPE:
|
api_url |
Url to the resource in the Comicvine API.
TYPE:
|
cover_date |
Date on the cover of the Issue.
TYPE:
|
date_added |
Date and time when the Issue was added.
TYPE:
|
date_last_updated |
Date and time when the Issue was last updated.
TYPE:
|
description |
Long description of the Issue.
TYPE:
|
id |
Identifier used by Comicvine.
TYPE:
|
image |
Different sized images, posters and thumbnails for the Issue.
TYPE:
|
name |
Name/Title of the Issue.
TYPE:
|
number |
The Issue number.
TYPE:
|
site_url |
Url to the resource in Comicvine.
TYPE:
|
store_date |
Date the Issue went on sale on stores.
TYPE:
|
summary |
Short description of the Issue.
TYPE:
|
volume |
The volume the Issue is in.
TYPE:
|
Issue
Bases: BasicIssue
Extends BasicIssue by including all the list references of an issue.
| ATTRIBUTE | DESCRIPTION |
|---|---|
characters |
List of characters in the Issue.
TYPE:
|
concepts |
List of concepts in the Issue.
TYPE:
|
creators |
List of creators in the Issue.
TYPE:
|
deaths |
List of characters who died in the Issue.
TYPE:
|
first_appearance_characters |
List of characters who first appear in the Issue.
TYPE:
|
first_appearance_concepts |
List of concepts which first appear in the Issue.
TYPE:
|
first_appearance_locations |
List of locations which first appear in the Issue.
TYPE:
|
first_appearance_objects |
List of objects which first appear in the Issue.
TYPE:
|
first_appearance_story_arcs |
List of story arcs which first appear in the Issue.
TYPE:
|
first_appearance_teams |
List of teams who first appear in the Issue.
TYPE:
|
locations |
List of locations in the Issue.
TYPE:
|
objects |
List of objects in the Issue.
TYPE:
|
story_arcs |
List of story arcs in the Issue.
TYPE:
|
teams |
List of teams in the Issue.
TYPE:
|
teams_disbanded |
List of teams who disbanded in the Issue.
TYPE:
|
Functions
handle_blank_list(value: str | list | None) -> list
Convert a blank or None value to an empty list.
| PARAMETER | DESCRIPTION |
|---|---|
value
|
The value to check.
TYPE:
|
| RETURNS | DESCRIPTION |
|---|---|
list
|
An empty list if the value is None or an empty string, otherwise the original list. |