Search⌘ K
AI Features

Manage Submissions for Posts

Explore how to manage Reddit posts by reading submissions in the spam inbox and approving them using PRAW. Learn to handle post moderation tasks in Python without opening Reddit, streamlining your Reddit content management.

We'll cover the following...

Read posts

The posts we submit using scripts often go into the spam inbox of the moderators. To read the submitted posts, we use the mod class and the spam() method to get all the spam messages. In the following method, we approve the post without opening Reddit.

Here are some important parameters we'll use to call the method:

Parameter

Type

Category

Description

limit

integer

optional

This limits the items sent back in the response

only

string

optional

This is set to either "comments" or "submissions" to only get the comments or submissions in the response.

...