Skip to content

Team

BaseTeam

Bases: BaseModel

Contains fields for all Teams.

ATTRIBUTE DESCRIPTION
aliases

List of names used by the Team, 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 Team was added.

TYPE: datetime

date_last_updated

Date and time when the Team was last updated.

TYPE: datetime

description

Long description of the Team.

TYPE: str | None

first_issue

First issue the Team appeared in.

TYPE: IssueEntry | None

id

Identifier used by Comicvine.

TYPE: int

image

Different sized images, posters and thumbnails for the Team.

TYPE: Image

issue_count

Number of issues the Team appears in.

TYPE: int

member_count

Number of members in the Team.

TYPE: int

name

Name/Title of the Team.

TYPE: str

publisher

The publisher of the Team.

TYPE: GenericEntry | None

site_url

Url to the resource in Comicvine.

TYPE: str

summary

Short description of the Team.

TYPE: str | None

Team

Bases: BaseTeam

Extends BaseTeam by including all the list references of a team.

ATTRIBUTE DESCRIPTION
enemies

List of enemies of the Team.

TYPE: list[GenericEntry]

friends

List of friends of the Team.

TYPE: list[GenericEntry]

issues

List of issues the Team appears in.

TYPE: list[GenericEntry]

issues_disbanded_in

List of issues the Team disbanded in.

TYPE: list[GenericEntry]

members

List of members in the Team.

TYPE: list[GenericEntry]

story_arcs

List of story arcs the Team appears in.

TYPE: list[GenericEntry]

volumes

List of volumes the Team appears in.

TYPE: list[GenericEntry]

TeamEntry

Bases: BaseTeam

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