falcon_alliance.Award

class falcon_alliance.Award(**kwargs)

Class representing an award’s information for a team or during an event.

name

The name of the award as provided by FIRST. May vary for the same award type.

Type

str

award_type

Type of award given. See https://github.com/the-blue-alliance/the-blue-alliance/blob/master/consts/award_type.py#L6

Type

int

event_key

The event_key of the event the award was won at.

Type

str

recipient_list

A list of recipients of the award at the event. May have either a team_key or an awardee, both, or neither (in the case the award wasn’t awarded at the event).

Type

list[falcon_alliance.Award.AwardRecipient]

year

The year this award was won.

Type

int

class AwardRecipient(team_key: str, awardee: Optional[str])

Class containing information about an award’s recipient.