...

/

Manage Submissions for Posts

Manage Submissions for Posts

Learn how to manage submissions using Reddit's Python wrapper.

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.

...