Submission¶
-
class
praw.models.Submission(reddit: Reddit, id: Optional[str] = None, url: Optional[str] = None, _data: Optional[Dict[str, Any]] = None)¶ A class for submissions to reddit.
Typical Attributes
This table describes attributes that typically belong to objects of this class. Since attributes are dynamically provided (see Determine Available Attributes of an Object), there is not a guarantee that these attributes will always be present, nor is this list comprehensive in any way.
Attribute Description authorProvides an instance of Redditor.clickedWhether or not the submission has been clicked by the client. commentsProvides an instance of CommentForest.created_utcTime the submission was created, represented in Unix Time. distinguishedWhether or not the submission is distinguished. editedWhether or not the submission has been edited. idID of the submission. is_original_contentWhether or not the submission has been set as original content. is_selfWhether or not the submission is a selfpost (text-only). link_flair_template_idThe link flair’s ID, or None if not flaired. link_flair_textThe link flair’s text content, or None if not flaired. lockedWhether or not the submission has been locked. nameFullname of the submission. num_commentsThe number of comments on the submission. over_18Whether or not the submission has been marked as NSFW. permalinkA permalink for the submission. scoreThe number of upvotes for the submission. selftextThe submissions’ selftext - an empty string if a link post. spoilerWhether or not the submission has been marked as a spoiler. stickiedWhether or not the submission is stickied. subredditProvides an instance of Subreddit.titleThe title of the submission. upvote_ratioThe percentage of upvotes from all votes on the submission. urlThe URL the submission links to, or the permalink if a selfpost. -
__init__(reddit: Reddit, id: Optional[str] = None, url: Optional[str] = None, _data: Optional[Dict[str, Any]] = None)¶ Initialize a Submission instance.
Parameters: - reddit – An instance of
Reddit. - id – A reddit base36 submission ID, e.g.,
2gmzqe. - url – A URL supported by
id_from_url().
Either
idorurlcan be provided, but not both.- reddit – An instance of
-
clear_vote()¶ Clear the authenticated user’s vote on the object.
Note
Votes must be cast by humans. That is, API clients proxying a human’s action one-for-one are OK, but bots deciding how to vote on content or amplifying a human’s vote are not. See the reddit rules for more details on what constitutes vote cheating. [Ref]
Example usage:
submission = reddit.submission(id='5or86n') submission.clear_vote() comment = reddit.comment(id='dxolpyc') comment.clear_vote()
-
comments¶ Provide an instance of
CommentForest.This attribute can use used, for example, to obtain a flat list of comments, with any
MoreCommentsremoved:submission.comments.replace_more(limit=0) comments = submission.comments.list()
Sort order and comment limit can be set with the
comment_sortandcomment_limitattributes before comments are fetched, including any call toreplace_more():submission.comment_sort = 'new' comments = submission.comments.list()
See Extracting comments with PRAW for more on working with a
CommentForest.
-
crosspost(subreddit: praw.models.reddit.subreddit.Subreddit, title: Optional[str] = None, send_replies: bool = True, flair_id: Optional[str] = None, flair_text: Optional[str] = None, nsfw: bool = False, spoiler: bool = False) → _Submission¶ Crosspost the submission to a subreddit.
Note
Be aware you have to be subscribed to the target subreddit.
Parameters: - subreddit – Name of the subreddit or
Subredditobject to crosspost into. - title – Title of the submission. Will use this submission’s title if None (default: None).
- flair_id – The flair template to select (default: None).
- flair_text – If the template’s
flair_text_editablevalue is True, this value will set a custom text (default: None). - send_replies – When True, messages will be sent to the submission author when comments are made to the submission (default: True).
- nsfw – Whether or not the submission should be marked NSFW (default: False).
- spoiler – Whether or not the submission should be marked as a spoiler (default: False).
Returns: A
Submissionobject for the newly created submission.Example usage:
submission = reddit.submission(id='5or86n') cross_post = submission.crosspost(subreddit="learnprogramming", send_replies=False)
See also
hide()- subreddit – Name of the subreddit or
-
delete()¶ Delete the object.
Example usage:
comment = reddit.comment('dkk4qjd') comment.delete() submission = reddit.submission('8dmv8z') submission.delete()
-
disable_inbox_replies()¶ Disable inbox replies for the item.
Example usage:
comment = reddit.comment('dkk4qjd') comment.disable_inbox_replies() submission = reddit.submission('8dmv8z') submission.disable_inbox_replies()
See also
enable_inbox_replies()
-
downvote()¶ Downvote the object.
Note
Votes must be cast by humans. That is, API clients proxying a human’s action one-for-one are OK, but bots deciding how to vote on content or amplifying a human’s vote are not. See the reddit rules for more details on what constitutes vote cheating. [Ref]
Example usage:
submission = reddit.submission(id='5or86n') submission.downvote() comment = reddit.comment(id='dxolpyc') comment.downvote()
See also
upvote()
-
duplicates(**generator_kwargs) → Generator[[Submission, None], None]¶ Return a
ListingGeneratorfor the submission’s duplicates.Additional keyword arguments are passed in the initialization of
ListingGenerator.Example usage:
submission = reddit.submission(id='5or86n') for duplicate in submission.duplicates(): # process each duplicate
See also
upvote()
-
edit(body)¶ Replace the body of the object with
body.Parameters: body – The Markdown formatted content for the updated object. Returns: The current instance after updating its attributes. Example usage:
comment = reddit.comment('dkk4qjd') # construct the text of an edited comment # by appending to the old body: edited_body = comment.body + "Edit: thanks for the gold!" comment.edit(edited_body)
-
enable_inbox_replies()¶ Enable inbox replies for the item.
Example usage:
comment = reddit.comment('dkk4qjd') comment.enable_inbox_replies() submission = reddit.submission('8dmv8z') submission.enable_inbox_replies()
See also
disable_inbox_replies()
-
flair¶ Provide an instance of
SubmissionFlair.This attribute is used to work with flair as a regular user of the subreddit the submission belongs to. Moderators can directly use
flair().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, 'my custom value')
-
fullname¶ Return the object’s fullname.
A fullname is an object’s kind mapping like
t3followed by an underscore and the object’s base36 ID, e.g.,t1_c5s96e0.
-
gild()¶ Gild the author of the item.
Note
Requires the authenticated user to own Reddit Coins. Calling this method will consume Reddit Coins.
Example usage:
comment = reddit.comment('dkk4qjd') comment.gild() submission = reddit.submission('8dmv8z') submission.gild()
-
hide(other_submissions: Optional[List[_Submission]] = None)¶ Hide Submission.
Parameters: other_submissions – When provided, additionally hide this list of Submissioninstances as part of a single request (default: None).Example usage:
submission = reddit.submission(id='5or86n') submission.hide()
See also
unhide()
-
static
id_from_url(url: str) → str¶ Return the ID contained within a submission URL.
Parameters: url – A url to a submission in one of the following formats (http urls will also work): * https://redd.it/2gmzqe * https://reddit.com/comments/2gmzqe/ * https://www.reddit.com/r/redditdev/comments/2gmzqe/praw_https/ Raise
ClientExceptionif URL is not a valid submission URL.
-
mark_visited()¶ Mark submission as visited.
This method requires a subscription to reddit premium.
Example usage:
submission = reddit.submission(id='5or86n') submission.mark_visited()
-
mod¶ Provide an instance of
SubmissionModeration.
-
classmethod
parse(data: Dict[str, Any], reddit: Reddit) → Any¶ Return an instance of
clsfromdata.Parameters: - data – The structured data.
- reddit – An instance of
Reddit.
-
reply(body)¶ Reply to the object.
Parameters: body – The Markdown formatted content for a comment. Returns: A Commentobject for the newly created comment orNoneif Reddit doesn’t provide one.A
Nonevalue can be returned if the target is a comment or submission in a quarantined subreddit and the authenticated user has not opt-ed in to viewing the content. When this happens the comment will be sucessfully created on Reddit and can be retried by drawing the comment from the user’s comment history.Example usage:
submission = reddit.submission(id='5or86n') submission.reply('reply') comment = reddit.comment(id='dxolpyc') comment.reply('reply')
-
report(reason)¶ Report this object to the moderators of its subreddit.
Parameters: reason – The reason for reporting. Raises
APIExceptionifreasonis longer than 100 characters.Example usage:
submission = reddit.submission(id='5or86n') submission.report('report reason') comment = reddit.comment(id='dxolpyc') comment.report('report reason')
-
save(category=None)¶ Save the object.
Parameters: category – (Premium) The category to save to. If your user does not have Reddit Premium this value is ignored by Reddit (default: None).Example usage:
submission = reddit.submission(id='5or86n') submission.save(category="view later") comment = reddit.comment(id='dxolpyc') comment.save()
See also
unsave()
-
shortlink¶ Return a shortlink to the submission.
For example http://redd.it/eorhm is a shortlink for https://www.reddit.com/r/announcements/comments/eorhm/reddit_30_less_typing/.
-
unhide(other_submissions: Optional[List[_Submission]] = None)¶ Unhide Submission.
Parameters: other_submissions – When provided, additionally unhide this list of Submissioninstances as part of a single request (default: None).Example usage:
submission = reddit.submission(id='5or86n') submission.unhide()
See also
hide()
-
unsave()¶ Unsave the object.
Example usage:
submission = reddit.submission(id='5or86n') submission.unsave() comment = reddit.comment(id='dxolpyc') comment.unsave()
See also
save()
-
upvote()¶ Upvote the object.
Note
Votes must be cast by humans. That is, API clients proxying a human’s action one-for-one are OK, but bots deciding how to vote on content or amplifying a human’s vote are not. See the reddit rules for more details on what constitutes vote cheating. [Ref]
Example usage:
submission = reddit.submission(id='5or86n') submission.upvote() comment = reddit.comment(id='dxolpyc') comment.upvote()
See also
downvote()
-
Note
This list of attributes is not complete. PRAW dynamically provides the attributes that Reddit returns via the API. Because those attributes are subject to change on Reddit’s end, PRAW makes no effort to document them, other than to instruct you on how to discover what is available. See Determine Available Attributes of an Object for detailed information.