CollectionModeration#

class praw.models.reddit.collections.CollectionModeration(reddit: praw.Reddit, collection_id: str)#

Class to support moderation actions on a Collection.

Obtain an instance via:

reddit.subreddit("test").collections("some_uuid").mod
__init__(reddit: praw.Reddit, collection_id: str)#

Initialize a CollectionModeration instance.

Parameters:

collection_id – The ID of a Collection.

add_post(submission: praw.models.Submission)#

Add a post to the collection.

Parameters:

submission – The post to add, a Submission, its permalink as a str, its fullname as a str, or its ID as a str.

Example usage:

collection = reddit.subreddit("test").collections("some_uuid")
collection.mod.add_post("bgibu9")

See also

remove_post()

delete()#

Delete this collection.

Example usage:

reddit.subreddit("test").collections("some_uuid").mod.delete()

See also

create()

classmethod parse(data: dict[str, Any], reddit: praw.Reddit) Any#

Return an instance of cls from data.

Parameters:
  • data – The structured data.

  • reddit – An instance of Reddit.

remove_post(submission: praw.models.Submission)#

Remove a post from the collection.

Parameters:

submission – The post to remove, a Submission, its permalink as a str, its fullname as a str, or its ID as a str.

Example usage:

collection = reddit.subreddit("test").collections("some_uuid")
collection.mod.remove_post("bgibu9")

See also

add_post()

reorder(links: list[str | praw.models.Submission])#

Reorder posts in the collection.

Parameters:

links – A list of Submissions or a str that is either a fullname or an ID.

Example usage:

collection = reddit.subreddit("test").collections("some_uuid")
current_order = collection.link_ids
new_order = reversed(current_order)
collection.mod.reorder(new_order)
update_description(description: str)#

Update the collection’s description.

Parameters:

description – The new description.

Example usage:

collection = reddit.subreddit("test").collections("some_uuid")
collection.mod.update_description("Please enjoy these links!")

See also

update_title()

update_display_layout(display_layout: str)#

Update the collection’s display layout.

Parameters:

display_layout – Either "TIMELINE" for events or discussions or "GALLERY" for images or memes. Passing None will clear the set layout and collection.display_layout will be None, however, the collection will appear on Reddit as if display_layout is set to "TIMELINE".

Example usage:

collection = reddit.subreddit("test").collections("some_uuid")
collection.mod.update_display_layout("GALLERY")
update_title(title: str)#

Update the collection’s title.

Parameters:

title – The new title.

Example usage:

collection = reddit.subreddit("test").collections("some_uuid")
collection.mod.update_title("Titley McTitleface")