Creator
BasicCreator
Bases: BaseModel
Contains fields for all Creators.
| ATTRIBUTE | DESCRIPTION |
|---|---|
aliases |
List of names used by the Creator, collected in a string.
TYPE:
|
api_url |
Url to the resource in the Comicvine API.
TYPE:
|
country |
Country of origin.
TYPE:
|
date_added |
Date and time when the Creator was added.
TYPE:
|
date_last_updated |
Date and time when the Creator was last updated.
TYPE:
|
date_of_birth |
Date when the Creator was born.
TYPE:
|
date_of_death |
Date when the Creator died.
TYPE:
|
description |
Long description of the Creator.
TYPE:
|
email |
Email address of the Creator.
TYPE:
|
gender |
Creator gender.
TYPE:
|
hometown |
Hometown of the Creator.
TYPE:
|
id |
Identifier used by Comicvine.
TYPE:
|
image |
Different sized images, posters and thumbnails for the Creator.
TYPE:
|
issue_count |
Number of issues the Creator appears in.
TYPE:
|
name |
Name/Title of the Creator.
TYPE:
|
site_url |
Url to the resource in Comicvine.
TYPE:
|
summary |
Short description of the Creator.
TYPE:
|
website |
Url to the Creator's website.
TYPE:
|
Source code in simyan/schemas/creator.py
| Python | |
|---|---|
74 75 76 77 | |
Creator
Bases: BasicCreator
Extends BasicCreator by including all the list references of a creator.
| ATTRIBUTE | DESCRIPTION |
|---|---|
characters |
List of characters the Creator has created.
TYPE:
|
issues |
List of issues the Creator appears in.
TYPE:
|
story_arcs |
List of story arcs the Creator appears in.
TYPE:
|
volumes |
List of volumes the Creator appears in.
TYPE:
|
Source code in simyan/schemas/creator.py
| Python | |
|---|---|
74 75 76 77 | |
TimezonedDate
Bases: BaseModel
Date value paired with timezone metadata from Comicvine.
| ATTRIBUTE | DESCRIPTION |
|---|---|
date |
Local date value
TYPE:
|
timezone |
Timezone name or identifier
TYPE:
|
timezone_type |
Comicvine timezone type value
TYPE:
|
Source code in simyan/schemas/creator.py
| Python | |
|---|---|
25 26 27 28 | |