Issue
BasicIssue
Bases: BaseModel
Contains fields for all Issues.
| ATTRIBUTE | DESCRIPTION |
|---|---|
api_url |
Url to the resource in the GCD API.
TYPE:
|
series_name |
The name of the series.
TYPE:
|
descriptor |
The descriptor of the issue.
TYPE:
|
publication_str |
The publication date of the issue.
TYPE:
|
price |
The price of the issue.
TYPE:
|
page_count |
The page count of the issue.
TYPE:
|
variant_of |
The URL of the original issue if this issue is a variant.
TYPE:
|
series |
Url to the Series of this resource in the GCD API.
TYPE:
|
Attributes
id
property
The Issue id, extracted from the api_url field.
publication_date
property
Returns the publication date as a date object if possible.
Attempts to parse the publication date string and return it as a date object. If parsing fails, returns None.
series_id
property
The Series id, extracted from the series field.
Issue
Bases: BasicIssue
Extends BasicIssue to include more details.
| ATTRIBUTE | DESCRIPTION |
|---|---|
number |
TYPE:
|
volume |
TYPE:
|
variant_name |
TYPE:
|
title |
TYPE:
|
key_str |
TYPE:
|
editing |
The editing credits for the issue.
TYPE:
|
indicia_publisher |
According to the indicia what is the publisher of the issue.
TYPE:
|
brand_emblem |
TYPE:
|
isbn |
The ISBN of the issue.
TYPE:
|
barcode |
The barcode of the issue.
TYPE:
|
rating |
The rating of the issue.
TYPE:
|
on_sale_str |
The on-sale date of the issue.
TYPE:
|
indicia_frequency |
According to the indicia what is the frequency release of the issue.
TYPE:
|
notes |
Additional notes about the issue.
TYPE:
|
story_set |
A list of stories in the issue.
TYPE:
|
cover |
The URL of the issue's cover image.
TYPE:
|
Attributes
key_date
property
Returns the key date as a date object if possible.
Attempts to parse the key date string and return it as a date object. If parsing fails, returns None.
on_sale_date
property
Returns the on-sale date as a date object if possible.
Attempts to parse the on-sale date string and return it as a date object. If parsing fails, returns None.
Story
Bases: BaseModel
Contains fields relating to the stories inside an Issue.
| ATTRIBUTE | DESCRIPTION |
|---|---|
type |
The type of the story.
TYPE:
|
title |
The title of the story.
TYPE:
|
feature |
TYPE:
|
sequence_number |
The order of the story in the larger issue.
TYPE:
|
page_count |
The page count of the story.
TYPE:
|
script |
The script credits for the story.
TYPE:
|
pencils |
The pencil credits for the story.
TYPE:
|
inks |
The ink credits for the story.
TYPE:
|
colors |
The color credits for the story.
TYPE:
|
letters |
The letter credits for the story.
TYPE:
|
editing |
The editing credits for the story.
TYPE:
|
job_number |
TYPE:
|
genre |
The genre of the story.
TYPE:
|
first_line |
TYPE:
|
characters |
The characters in the story.
TYPE:
|
synopsis |
The synopsis of the story.
TYPE:
|
notes |
Additional notes about the story.
TYPE:
|
keywords |
TYPE:
|