SubmissionModeration
- class asyncpraw.models.reddit.submission.SubmissionModeration(submission: asyncpraw.models.Submission)
Provide a set of functions pertaining to
Submissionmoderation.Example usage:
submission = await reddit.submission("8dmv8z", fetch=False) await submission.mod.approve()
- __init__(submission: asyncpraw.models.Submission)
Initialize a
SubmissionModerationinstance.- Parameters
submission – The submission to moderate.
- await approve()
Approve a
CommentorSubmission.Approving a comment or submission reverts a removal, resets the report counter, adds a green check mark indicator (only visible to other moderators) on the website view, and sets the
approved_byattribute to the authenticated user.Example usage:
# approve a comment: comment = await reddit.comment("dkk4qjd", fetch=False) await comment.mod.approve() # approve a submission: submission = await reddit.submission("5or86n", fetch=False) await submission.mod.approve()
- author_notes(**generator_kwargs) AsyncGenerator[asyncpraw.models.ModNote, None]
Get the moderator notes for the author of this object in the subreddit it’s posted in.
- Parameters
generator_kwargs – Additional keyword arguments are passed in the initialization of the moderator note generator.
- Returns
A generator of
ModNote.
For example, to list all notes the author of a submission, try:
for note in reddit.submission("92dd8").mod.author_notes(): print(f"{note.label}: {note.note}")
- await contest_mode(*, state: bool = True)
Set contest mode for the comments of this submission.
- Parameters
state –
Trueenables contest mode andFalsedisables (default:True).
Contest mode have the following effects:
The comment thread will default to being sorted randomly.
Replies to top-level comments will be hidden behind “[show replies]” buttons.
Scores will be hidden from non-moderators.
Scores accessed through the API (mobile apps, bots) will be obscured to “1” for non-moderators.
Example usage:
submission = await reddit.submission("5or86n", fetch=False) await submission.mod.contest_mode()
- await create_note(*, label: Optional[str] = None, note: str, **other_settings) asyncpraw.models.ModNote
Create a moderator note on the author of this object in the subreddit it’s posted in.
- Parameters
label – The label for the note. As of this writing, this can be one of the following:
"ABUSE_WARNING","BAN","BOT_BAN","HELPFUL_USER","PERMA_BAN","SOLID_CONTRIBUTOR","SPAM_WARNING","SPAM_WATCH", orNone(default:None).note – The content of the note. As of this writing, this is limited to 250 characters.
other_settings – Additional keyword arguments are passed to
create().
- Returns
The new
ModNoteobject.
For example, to create a note on a
Submission, try:submission = await reddit.submission("92dd8") await submission.mod.create_note(label="HELPFUL_USER", note="Test note")
- await distinguish(*, how: str = 'yes', sticky: bool = False)
Distinguish a
CommentorSubmission.- Parameters
how – One of
"yes","no","admin", or"special"."yes"adds a moderator level distinguish."no"removes any distinction."admin"and"special"require special user privileges to use (default"yes").sticky –
Commentis stickied ifTrue, placing it at the top of the comment page regardless of score. If thing is not a top-level comment, this parameter is silently ignored (defaultFalse).
Example usage:
# distinguish and sticky a comment: comment = await reddit.comment("dkk4qjd", fetch=False) await comment.mod.distinguish(sticky=True) # undistinguish a submission: submission = await reddit.submission("5or86n", fetch=False) await submission.mod.distinguish(how="no")
See also
- await flair(*, css_class: str = '', flair_template_id: Optional[str] = None, text: str = '')
Set flair for the submission.
- Parameters
css_class – The css class to associate with the flair html (default:
"").flair_template_id – The flair template ID to use when flairing.
text – The flair text to associate with the
Submission(default:"").
This method can only be used by an authenticated user who is a moderator of the submission’s
Subreddit.Example usage:
submission = await reddit.submission("5or86n", fetch=False) await submission.mod.flair(text="PRAW", css_class="bot")
- await ignore_reports()
Ignore future reports on a
CommentorSubmission.Calling this method will prevent future reports on this
CommentorSubmissionfrom both triggering notifications and appearing in the various moderation listings. The report count will still increment on theCommentorSubmission.Example usage:
# ignore future reports on a comment: comment = await reddit.comment("dkk4qjd", fetch=False) await comment.mod.ignore_reports() # ignore future reports on a submission: submission = await reddit.submission("5or86n", fetch=False) await submission.mod.ignore_reports()
See also
- await lock()
Lock a
CommentorSubmission.Example usage:
# lock a comment: comment = await reddit.comment("dkk4qjd", fetch=False) await comment.mod.lock() # lock a submission: submission = await reddit.submission("5or86n", fetch=False) await submission.mod.lock()
See also
- await nsfw()
Mark as not safe for work.
This method can be used both by the submission author and moderators of the subreddit that the submission belongs to.
Example usage:
subreddit = await reddit.subreddit("test") submission = await subreddit.submit("nsfw test", selftext="nsfw") await submission.mod.nsfw()
See also
- await remove(*, mod_note: str = '', spam: bool = False, reason_id: Optional[str] = None)
Remove a
CommentorSubmission.- Parameters
mod_note – A message for the other moderators.
spam – When
True, use the removal to help train theSubreddit’s spam filter (default:False).reason_id – The removal reason ID.
If either
reason_idormod_noteare provided, a second API call is made to add the removal reason.Example usage:
# remove a comment and mark as spam: comment = await reddit.comment("dkk4qjd", fetch=False) await comment.mod.remove(spam=True) # remove a submission submission = await reddit.submission("5or86n", fetch=False) await submission.mod.remove() # remove a submission with a removal reason sub = await reddit.subreddit("test") reason = await sub.mod.removal_reasons.get_reason("110ni21zo23ql") submission = await reddit.submission("5or86n", fetch=False) await submission.mod.remove(reason_id=reason.id)
- await send_removal_message(*, message: str, title: str = 'ignored', type: str = 'public') Optional[asyncpraw.models.Comment]
Send a removal message for a
CommentorSubmission.Warning
The object has to be removed before giving it a removal reason. Remove the object with
remove(). Trying to add a removal reason without removing the object will result inRedditAPIExceptionbeing thrown with anINVALID_IDerror_type.Reddit adds human-readable information about the object to the message.
- Parameters
type – One of
"public","private", or"private_exposed"."public"leaves a stickied comment on the post."private"sends a modmail message with hidden username."private_exposed"sends a modmail message without hidden username (default:"public").title – The short reason given in the message. Ignored if type is
"public".message – The body of the message.
- Returns
The new
Commentiftypeis"public".
- await set_original_content()
Mark as original content.
This method can be used by moderators of the subreddit that the submission belongs to. If the subreddit has enabled the Original Content beta feature in settings, then the submission’s author can use it as well.
Example usage:
subreddit = await reddit.subreddit("test") submission = await subreddit.submit("oc test", selftext="original") await submission.mod.set_original_content()
See also
- await sfw()
Mark as safe for work.
This method can be used both by the submission author and moderators of the subreddit that the submission belongs to.
Example usage:
submission = await reddit.submission("5or86n", fetch=False) await submission.mod.sfw()
See also
- await spoiler()
Indicate that the submission contains spoilers.
This method can be used both by the submission author and moderators of the subreddit that the submission belongs to.
Example usage:
submission = await reddit.submission("5or86n", fetch=False) await submission.mod.spoiler()
See also
- await sticky(*, bottom: bool = True, state: bool = True)
Set the submission’s sticky state in its subreddit.
- Parameters
bottom – When
True, set the submission as the bottom sticky. If no top sticky exists, this submission will become the top sticky regardless (default:True).state –
Truesets the sticky for the submission andFalseunsets (default:True).
Note
When a submission is stickied two or more times, the Reddit API responds with a 409 error that is raised as a
Conflictby asyncprawcore. This method suppresses theseConflicterrors.This submission will replace the second stickied submission if one exists.
For example:
submission = await reddit.submission("5or86n", fetch=False) await submission.mod.sticky()
- await suggested_sort(*, sort: str = 'blank')
Set the suggested sort for the comments of the submission.
- Parameters
sort – Can be one of:
"confidence","top","new","controversial","old","random","qa", or"blank"(default:"blank").
- await undistinguish()
Remove mod, admin, or special distinguishing from an object.
Also unstickies the object if applicable.
Example usage:
# undistinguish a comment: comment = await reddit.comment("dkk4qjd", fetch=False) await comment.mod.undistinguish() # undistinguish a submission: submission = await reddit.submission("5or86n", fetch=False) await submission.mod.undistinguish()
See also
- await unignore_reports()
Resume receiving future reports on a
CommentorSubmission.Future reports on this
CommentorSubmissionwill cause notifications, and appear in the various moderation listings.Example usage:
# accept future reports on a comment: comment = await reddit.comment("dkk4qjd", fetch=False) await comment.mod.unignore_reports() # accept future reports on a submission: submission = await reddit.submission("5or86n", fetch=False) await submission.mod.unignore_reports()
See also
- await unlock()
Unlock a
CommentorSubmission.Example usage:
# unlock a comment: comment = await reddit.comment("dkk4qjd", fetch=False) await comment.mod.unlock() # unlock a submission: submission = await reddit.submission("5or86n", fetch=False) await submission.mod.unlock()
See also
- await unset_original_content()
Indicate that the submission is not original content.
This method can be used by moderators of the subreddit that the submission belongs to. If the subreddit has enabled the Original Content beta feature in settings, then the submission’s author can use it as well.
Example usage:
subreddit = await reddit.subreddit("test") submission = await subreddit.submit("oc test", selftext="original") await submission.mod.unset_original_content()
See also
- await unspoiler()
Indicate that the submission does not contain spoilers.
This method can be used both by the submission author and moderators of the subreddit that the submission belongs to.
For example:
sub = await reddit.subreddit("test") submission = await sub.submit("not spoiler", selftext="spoiler") await submission.mod.unspoiler()
See also
- await update_crowd_control_level(level: int)
Change the Crowd Control level of the submission.
- Parameters
level – An integer between 0 and 3.
Level Descriptions
Level
Name
Description
0
Off
Crowd Control will not action any of the submission’s comments.
1
Lenient
Comments from users who have negative karma in the subreddit are automatically collapsed.
2
Moderate
Comments from new users and users with negative karma in the subreddit are automatically collapsed.
3
Strict
Comments from users who haven’t joined the subreddit, new users, and users with negative karma in the subreddit are automatically collapsed.
Example usage:
submission = await reddit.submission("745ryj") await submission.mod.update_crowd_control_level(2)
See also