SubmissionFlair#
- class praw.models.reddit.submission.SubmissionFlair(submission: praw.models.Submission)#
Provide a set of functions pertaining to
Submissionflair.- __init__(submission: praw.models.Submission)#
Initialize a
SubmissionFlairinstance.- Parameters:
submission – The
Submissionassociated with the flair functions.
- choices() List[Dict[str, Union[bool, list, str]]]#
Return list of available flair choices.
Choices are required in order to use
select().For example:
choices = submission.flair.choices()
- select(flair_template_id: str, *, text: Optional[str] = None)#
Select flair for submission.
- Parameters:
flair_template_id – The flair template to select. The possible values can be discovered through
choices().text – If the template’s
flair_text_editablevalue isTrue, this value will set a custom text (default:None).
For example, to select an arbitrary editable flair text (assuming there is one) and set a custom value try:
choices = submission.flair.choices() template_id = next(x for x in choices if x["flair_text_editable"])["flair_template_id"] submission.flair.select(template_id, text="my custom value")