def bind_tournament_data(
self,
round: str = None,
team_a: str = None,
team_b: str = None,
winner: str = None,
score_a: str = None,
score_b: str = None,
metadata: Union[list, str] = None,
id: str = None,
image: str = None
)
python
ArgumentsType hintDescription
selfFlourishReturns the Flourish object
roundstr, optionalStage. The stage of the tournament, for example "Round of 16" or "Semifinals". Flourish type hint: column
team_astr, optionalParticipant A. The first participant or team in this match. Flourish type hint: column
team_bstr, optionalParticipant B. The second participant or team in this match. Flourish type hint: column
winnerstr, optionalWinner. The winning participant or team in this match. Must match the name of either Participant A or Participant B. If left blank, the template will assume that the match is upcoming. Flourish type hint: column
score_astr, optionalParticipant A score. The score of Participant A in this match. Will appear along with the participants name in the box. Suggested data type hints: string, number. Flourish type hint: column
score_bstr, optionalParticipant B score. The score of Participant B in this match. Will appear along with the participants name in the box. Suggested data type hints: string, number. Flourish type hint: column
metadataUnion[list, str], optionalInfo for popups. One or more columns of information (text, image URLs , embedded charts etc) to include in popups and panels Suggested data type hints: string, number, datetime. Flourish type hint: columns
idstr, optionalID. Participant ID. Should match a participants name from the Matches sheet. Flourish type hint: column
imagestr, optionalImage. Image to render in the participant box. Add an image URL or right-click on a cell to upload an image. Flourish type hint: column