Subreddit¶
-
class
asyncpraw.models.Subreddit(reddit, display_name=None, _data=None)¶ A class for Subreddits.
To obtain an instance of this class for subreddit
r/redditdevexecute:subreddit = await reddit.subreddit("redditdev")
To obtain a lazy instance of this class for subreddit
r/redditdevexecute:subreddit = await reddit.subreddit("redditdev")
While
r/allis not a real subreddit, it can still be treated like one. The following outputs the titles of the 25 hottest submissions inr/all:subreddit = await reddit.subreddit("all") async for submission in subreddit.hot(limit=25): print(submission.title)
Multiple subreddits can be combined with a
+like so:subreddit = await reddit.subreddit("redditdev+learnpython") async for submission in subreddit.top("all"): print(submission)
Subreddits can be filtered from combined listings as follows.
Note
These filters are ignored by certain methods, including
comments,gilded(), andSubredditStream.comments().subreddit = await reddit.subreddit("all-redditdev") async for submission in subreddit.new(): print(submission)
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 necessarily complete.
Attribute
Description
can_assign_link_flairWhether users can assign their own link flair.
can_assign_user_flairWhether users can assign their own user flair.
created_utcTime the subreddit was created, represented in Unix Time.
descriptionSubreddit description, in Markdown.
description_htmlSubreddit description, in HTML.
display_nameName of the subreddit.
idID of the subreddit.
nameFullname of the subreddit.
over18Whether the subreddit is NSFW.
public_descriptionDescription of the subreddit, shown in searches and on the “You must be invited to visit this community” page (if applicable).
spoilers_enabledWhether the spoiler tag feature is enabled.
subscribersCount of subscribers.
user_is_bannedWhether the authenticated user is banned.
user_is_moderatorWhether the authenticated user is a moderator.
user_is_subscriberWhether the authenticated user is subscribed.
Note
Trying to retrieve attributes of quarantined or private subreddits will result in a 403 error. Trying to retrieve attributes of a banned subreddit will result in a 404 error.
-
__init__(reddit, display_name=None, _data=None)¶ Initialize a Subreddit instance.
- Parameters
reddit – An instance of
Reddit.display_name – The name of the subreddit.
Note
This class should not be initialized directly. Instead obtain an instance via:
# to lazily load a subreddit instance await reddit.subreddit("subreddit_name") # to fully load a subreddit instance await reddit.subreddit("subreddit_name", fetch=True)
-
banned¶ Provide an instance of
SubredditRelationship.For example, to ban a user try:
subreddit = await reddit.subreddit("SUBREDDIT") await subreddit.banned.add("NAME", ban_reason="...")
To list the banned users along with any notes, try:
subreddit = await reddit.subreddit("SUBREDDIT") async for ban in subreddit.banned(): print(f"{ban}: {ban.note}")
-
collections¶ Provide an instance of
SubredditCollections.To see the permalinks of all
Collections that belong to a subreddit, try:subreddit = await reddit.subreddit("SUBREDDIT") async for collection in subreddit.collections: print(collection.permalink)
To get a specific
Collectionby its UUID or permalink, use one of the following:subreddit = await reddit.subreddit("SUBREDDIT") collection = subreddit.collections("some_uuid") collection = subreddit.collections(permalink="https://reddit.com/r/SUBREDDIT/collection/some_uuid")
-
comments¶ Provide an instance of
CommentHelper.For example, to output the author of the 25 most recent comments of
r/redditdevexecute:subreddit = await reddit.subreddit("redditdev") async for comment in subreddit.comments(limit=25): print(comment.author)
-
contributor¶ Provide an instance of
ContributorRelationship.Contributors are also known as approved submitters.
To add a contributor try:
subreddit = await reddit.subreddit("SUBREDDIT") await subreddit.contributor.add("NAME")
-
controversial(time_filter: str = 'all', **generator_kwargs: Union[str, int, Dict[str, str]]) → AsyncIterator[Any]¶ Return a
ListingGeneratorfor controversial submissions.- Parameters
time_filter – Can be one of: all, day, hour, month, week, year (default: all).
- Raises
ValueErroriftime_filteris invalid.
Additional keyword arguments are passed in the initialization of
ListingGenerator.This method can be used like:
reddit.domain("imgur.com").controversial("week") multireddit = await reddit.multireddit("samuraisam", "programming") multireddit.controversial("day") redditor = await reddit.redditor("spez") redditor.controversial("month") redditor = await reddit.redditor("spez") redditor.comments.controversial("year") redditor = await reddit.redditor("spez") redditor.submissions.controversial("all") subreddit = await reddit.subreddit("all") subreddit.controversial("hour")
-
emoji¶ Provide an instance of
SubredditEmoji.This attribute can be used to discover all emoji for a subreddit:
subreddit = await reddit.subreddit("iama") async for emoji in subreddit.emoji: print(emoji)
A single emoji can be lazily retrieved via:
subreddit = await reddit.subreddit("blah") emoji = await subreddit.emoji.get_emoji("emoji_name")
Note
Attempting to access attributes of an nonexistent emoji will result in a
ClientException.
-
filters¶ Provide an instance of
SubredditFilters.For example, to add a filter, run:
subreddit = await reddit.subreddit("all") await subreddit.filters.add("subreddit_name")
-
flair¶ Provide an instance of
SubredditFlair.Use this attribute for interacting with a subreddit’s flair. For example, to list all the flair for a subreddit which you have the
flairmoderator permission on try:subreddit = await reddit.subreddit("NAME") async for flair in subreddit.flair(): print(flair)
Flair templates can be interacted with through this attribute via:
subreddit = await reddit.subreddit("NAME") async for template in subreddit.flair.templates: print(template)
-
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.
-
gilded(**generator_kwargs: Union[str, int, Dict[str, str]]) → AsyncIterator[Any]¶ Return a
ListingGeneratorfor gilded items.Additional keyword arguments are passed in the initialization of
ListingGenerator.For example, to get gilded items in subreddit
r/test:subreddit = await reddit.subreddit("test") async for item in subreddit.gilded(): print(item.id)
-
hot(**generator_kwargs: Union[str, int, Dict[str, str]]) → AsyncIterator[Any]¶ Return a
ListingGeneratorfor hot items.Additional keyword arguments are passed in the initialization of
ListingGenerator.This method can be used like:
reddit.domain("imgur.com").hot() multireddit = await reddit.multireddit("samuraisam", "programming") multireddit.hot() redditor = await reddit.redditor("spez") redditor.hot() redditor = await reddit.redditor("spez") redditor.comments.hot() redditor = await reddit.redditor("spez") redditor.submissions.hot() subreddit = await reddit.subreddit("all") subreddit.hot()
-
await
load()¶ Re-fetches the object.
This is used to explicitly fetch or re-fetch the object from reddit. This method can be used on any
RedditBaseobject.await reddit_base_object.load()
-
await
message(subject: str, message: str, from_subreddit: Union[Subreddit, str, None] = None)¶ Send a message to a redditor or a subreddit’s moderators (mod mail).
- Parameters
subject – The subject of the message.
message – The message content.
from_subreddit –
A
Subredditinstance or string to send the message from. When provided, messages are sent from the subreddit rather than from the authenticated user.Note
The authenticated user must be a moderator of the subreddit and have the
mailmoderator permission.
For example, to send a private message to
u/spez, try:redditor = await reddit.redditor("spez", lazy=True) await redditor.message("TEST", "test message from Async PRAW")
To send a message to
u/spezfrom the moderators ofr/testtry:redditor = await reddit.redditor("spez", lazy=True) await redditor.message("TEST", "test message from r/test", from_subreddit="test")
To send a message to the moderators of
r/test, try:subreddit = await reddit.subreddit("test") await subreddit.message("TEST", "test PM from Async PRAW")
-
mod¶ Provide an instance of
SubredditModeration.For example, to accept a moderation invite from subreddit
r/test:subreddit = await reddit.subreddit("test") await subreddit.mod.accept_invite()
-
moderator¶ Provide an instance of
ModeratorRelationship.For example, to add a moderator try:
subreddit = await reddit.subreddit("SUBREDDIT") await subreddit.moderator.add("NAME")
To list the moderators along with their permissions try:
subreddit = await reddit.subreddit("SUBREDDIT") async for moderator in subreddit.moderator: print(f"{moderator}: {moderator.mod_permissions}")
-
modmail¶ Provide an instance of
Modmail.For example, to send a new modmail from the subreddit
r/testto useru/spezwith the subjecttestalong with a message body ofhello:subreddit = await reddit.subreddit("test") await subreddit.modmail.create("test", "hello", "spez")
-
muted¶ Provide an instance of
SubredditRelationship.For example, muted users can be iterated through like so:
subreddit = await reddit.subreddit("redditdev") async for mute in subreddit.muted(): print("{mute}: {mute.note}")
-
new(**generator_kwargs: Union[str, int, Dict[str, str]]) → AsyncIterator[Any]¶ Return a
ListingGeneratorfor new items.Additional keyword arguments are passed in the initialization of
ListingGenerator.This method can be used like:
reddit.domain("imgur.com").new() multireddit = await reddit.multireddit("samuraisam", "programming") multireddit.new() redditor = await reddit.redditor("spez") redditor.new() redditor = await reddit.redditor("spez") redditor.comments.new() redditor = await reddit.redditor("spez") redditor.submissions.new() subreddit = await reddit.subreddit("all") subreddit.new()
-
classmethod
parse(data: Dict[str, Any], reddit: Reddit) → Any¶ Return an instance of
clsfromdata.- Parameters
data – The structured data.
reddit – An instance of
Reddit.
-
await
post_requirements()¶ Get the post requirements for a subreddit.
- Returns
A dict with the various requirements.
The returned dict contains the following keys:
domain_blacklistbody_restriction_policydomain_whitelisttitle_regexesbody_blacklisted_stringsbody_required_stringstitle_text_min_lengthis_flair_requiredtitle_text_max_lengthbody_regexeslink_repost_agebody_text_min_lengthlink_restriction_policybody_text_max_lengthtitle_required_stringstitle_blacklisted_stringsguidelines_textguidelines_display_policy
For example, to fetch the post requirements for
r/test:subreddit = await reddit.subreddit("test") post_requirements = await subreddit.post_requirements print(post_requirements)
-
quaran¶ Provide an instance of
SubredditQuarantine.This property is named
quaranbecausequarantineis a Subreddit attribute returned by Reddit to indicate whether or not a Subreddit is quarantined.To opt-in into a quarantined subreddit:
subreddit = await reddit.subreddit("test") await subreddit.quaran.opt_in()
-
await
random()¶ Return a random Submission.
Returns
Noneon subreddits that do not support the random feature. One example, at the time of writing, isr/wallpapers.For example, to get a random submission off of
r/AskReddit:subreddit = await reddit.subreddit("AskReddit") submission = await subreddit.random() print(submission.title)
-
random_rising(**generator_kwargs: Union[str, int, Dict[str, str]]) → AsyncIterator[Submission]¶ Return a
ListingGeneratorfor random rising submissions.Additional keyword arguments are passed in the initialization of
ListingGenerator.For example, to get random rising submissions for subreddit
r/test:subreddit = await reddit.subreddit("test") async for submission in subreddit.random_rising(): print(submission.title)
-
rising(**generator_kwargs: Union[str, int, Dict[str, str]]) → AsyncIterator[Submission]¶ Return a
ListingGeneratorfor rising submissions.Additional keyword arguments are passed in the initialization of
ListingGenerator.For example, to get rising submissions for subreddit
r/test:subreddit = await reddit.subreddit("test") async for submission in subreddit.rising(): print(submission.title)
-
rules¶ Provide an instance of
SubredditRules.Use this attribute for interacting with a subreddit’s rules.
For example, to list all the rules for a subreddit:
subreddit = await reddit.subreddit("AskReddit") async for rule in subreddit.rules: print(rule)
Moderators can also add rules to the subreddit. For example, to make a rule called
"No spam"in the subreddit"NAME":subreddit = await reddit.subreddit("NAME") await subreddit.rules.mod.add( short_name="No spam", kind="all", description="Do not spam. Spam bad")
-
search(query, sort='relevance', syntax='lucene', time_filter='all', **generator_kwargs)¶ Return a
ListingGeneratorfor items that matchquery.- Parameters
query – The query string to search for.
sort – Can be one of: relevance, hot, top, new, comments. (default: relevance).
syntax – Can be one of: cloudsearch, lucene, plain (default: lucene).
time_filter – Can be one of: all, day, hour, month, week, year (default: all).
For more information on building a search query see: https://www.reddit.com/wiki/search
For example, to search all subreddits for
prawtry:subreddit = await reddit.subreddit("all") async for submission in subreddit.search("praw"): print(submission.title)
-
await
sticky(number=1)¶ Return a Submission object for a sticky of the subreddit.
- Parameters
number – Specify which sticky to return. 1 appears at the top (default: 1).
- Raises
asyncprawcore.NotFoundif the sticky does not exist.
For example, to get the stickied post on the subreddit
r/test:subreddit = await reddit.subreddit("test") await subreddit.sticky()
-
stream¶ Provide an instance of
SubredditStream.Streams can be used to indefinitely retrieve new comments made to a subreddit, like:
subreddit = await reddit.subreddit("iama") async for comment in subreddit.stream.comments(): print(comment)
Additionally, new submissions can be retrieved via the stream. In the following example all submissions are fetched via the special subreddit
r/all:subreddit = await reddit.subreddit("all") async for submission in subreddit.stream.submissions(): print(submission)
-
stylesheet¶ Provide an instance of
SubredditStylesheet.For example, to add the css data
.test{color:blue}to the existing stylesheet:subreddit = await reddit.subreddit("SUBREDDIT") stylesheet = await subreddit.stylesheet() stylesheet.stylesheet += ".test{color:blue}" await subreddit.stylesheet.update(stylesheet.stylesheet)
-
await
submit(title, selftext=None, url=None, flair_id=None, flair_text=None, resubmit=True, send_replies=True, nsfw=False, spoiler=False, collection_id=None, discussion_type=None, inline_media=None)¶ Add a submission to the subreddit.
- Parameters
title – The title of the submission.
selftext – The Markdown formatted content for a
textsubmission. Use an empty string,"", to make a title-only submission.url – The URL for a
linksubmission.collection_id – The UUID of a
Collectionto add the newly-submitted post to.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).resubmit – When False, an error will occur if the URL has already been submitted (default: True).
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).
discussion_type – Set to
CHATto enable live discussion instead of traditional comments (default: None).inline_media – A dict of
InlineMediaobjects where the key is the placeholder name inselftext.
- Returns
A
Submissionobject for the newly created submission.
Either
selftextorurlcan be provided, but not both.For example, to submit a URL to
r/reddit_api_testdo:title = "Async PRAW documentation" url = "https://asyncpraw.readthedocs.io" subreddit = await reddit.subreddit("reddit_api_test") await subreddit.submit(title, url=url)
For example, to submit a self post with inline media do:
from asyncpraw.models import InlineGif, InlineImage, InlineVideo gif = InlineGif("path/to/image.gif", "optional caption") image = InlineImage("path/to/image.jpg", "optional caption") video = InlineVideo("path/to/video.mp4", "optional caption") selftext = "Text with a gif {gif1} an image {image1} and a video {video1} inline" media = {'gif1': gif, 'image1': image, 'video1': video} subreddit = await reddit.subreddit('redditdev') await subreddit.submit('title', selftext=selftext, inline_media=media)
Note
Inserted media will have a padding of
\\n\\nautomatically added. This is due to the weirdness with Reddit’s API. Using the example above the result selftext body will look like so:Text with a gif  an image  and video  inline
See also
submit_image()to submit imagessubmit_video()to submit videos and videogifssubmit_poll()to submit pollssubmit_gallery(). to submit more than one image in the same post
-
await
submit_gallery(title, images, *, collection_id=None, discussion_type=None, flair_id=None, flair_text=None, nsfw=False, send_replies=True, spoiler=False)¶ Add an image gallery submission to the subreddit.
- Parameters
title – The title of the submission.
images – The images to post in dict with the following structure:
{"image_path": "path", "caption": "caption", "outbound_url": "url"}, only"image_path"is required.collection_id – The UUID of a
Collectionto add the newly-submitted post to.discussion_type – Set to
CHATto enable live discussion instead of traditional comments (default: None).flair_id – The flair template to select (default: None).
flair_text – If the template’s
flair_text_editablevalue isTrue, this value will set a custom text (default: None).nsfw – Whether or not the submission should be marked NSFW (default: False).
send_replies – When True, messages will be sent to the submission author when comments are made to the submission (default: True).
spoiler – Whether or not the submission should be marked asa spoiler (default: False).
- Returns
A
Submissionobject for the newly created submission.- Raises
ClientExceptionifimage_pathinimagesrefers to a file that is not an image.
For example, to submit an image gallery to
r/reddit_api_testdo:title = "My favorite pictures" image = "/path/to/image.png" image2 = "/path/to/image2.png" image3 = "/path/to/image3.png" images = [ { "image_path": image }, { "image_path": image2, "caption": "Image caption 2", }, { "image_path": image3, "caption": "Image caption 3", "outbound_url": "https://example.com/link3" } ] subreddit = await reddit.subreddit("reddit_api_test") await subreddit.submit_gallery(title, images)
See also
submit()to submit url posts and selftextssubmit_image(). to submit single imagessubmit_poll()to submit pollssubmit_video(). to submit videos and videogifs
-
await
submit_image(title, image_path, flair_id=None, flair_text=None, resubmit=True, send_replies=True, nsfw=False, spoiler=False, timeout=10, collection_id=None, without_websockets=False, discussion_type=None)¶ Add an image submission to the subreddit.
- Parameters
title – The title of the submission.
image_path – The path to an image, to upload and post.
collection_id – The UUID of a
Collectionto add the newly-submitted post to.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).resubmit – When False, an error will occur if the URL has already been submitted (default: True).
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).
timeout – Specifies a particular timeout, in seconds. Use to avoid “Websocket error” exceptions (default: 10).
without_websockets – Set to
Trueto disable use of WebSockets (see note below for an explanation). IfTrue, this method doesn’t return anything. (default:False).discussion_type – Set to
CHATto enable live discussion instead of traditional comments (default: None).
- Returns
A
Submissionobject for the newly created submission, unlesswithout_websocketsisTrue.- Raises
ClientExceptionifimage_pathrefers to a file that is not an image.
Note
Reddit’s API uses WebSockets to respond with the link of the newly created post. If this fails, the method will raise
WebSocketException. Occasionally, the Reddit post will still be created. More often, there is an error with the image file. If you frequently get exceptions but successfully created posts, try setting thetimeoutparameter to a value above 10.To disable the use of WebSockets, set
without_websockets=True. This will make the method returnNone, though the post will still be created. You may wish to do this if you are running your program in a restricted network environment, or using a proxy that doesn’t support WebSockets connections.For example, to submit an image to
r/reddit_api_testdo:title = "My favorite picture" image = "/path/to/image.png" subreddit = await reddit.subreddit("reddit_api_test") await subreddit.submit_image(title, image)
See also
submit()to submit url posts and selftextssubmit_video(). to submit videos and videogifssubmit_gallery(). to submit more than one image in the same post
-
await
submit_poll(title: str, selftext: str, options: List[str], duration: int, flair_id: str = None, flair_text: str = None, resubmit: bool = True, send_replies: bool = True, nsfw: bool = False, spoiler: bool = False, collection_id: str = None, discussion_type: str = None)¶ Add a poll submission to the subreddit.
- Parameters
title – The title of the submission.
selftext – The Markdown formatted content for the submission. Use an empty string,
"", to make a submission with no text contents.options – A
listof two to six poll options asstr.duration – The number of days the poll should accept votes, as an
int. Valid values are between1and7, inclusive.collection_id – The UUID of a
Collectionto add the newly-submitted post to.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).resubmit – When False, an error will occur if the URL has already been submitted (default: True).
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).
discussion_type – Set to
CHATto enable live discussion instead of traditional comments (default: None).
- Returns
A
Submissionobject for the newly created submission.
For example, to submit a poll to
r/reddit_api_testdo:title = "Do you like Async PRAW?" subreddit = await reddit.subreddit("reddit_api_test") await subreddit.submit_poll(title, selftext="", options=["Yes", "No"], duration=3)
-
await
submit_video(title, video_path, videogif=False, thumbnail_path=None, flair_id=None, flair_text=None, resubmit=True, send_replies=True, nsfw=False, spoiler=False, timeout=10, collection_id=None, without_websockets=False, discussion_type=None)¶ Add a video or videogif submission to the subreddit.
- Parameters
title – The title of the submission.
video_path – The path to a video, to upload and post.
videogif – A
boolvalue. IfTrue, the video is uploaded as a videogif, which is essentially a silent video (default:False).thumbnail_path – (Optional) The path to an image, to be uploaded and used as the thumbnail for this video. If not provided, the PRAW logo will be used as the thumbnail.
collection_id – The UUID of a
Collectionto add the newly-submitted post to.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).resubmit – When False, an error will occur if the URL has already been submitted (default:
True).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).
timeout – Specifies a particular timeout, in seconds. Use to avoid “Websocket error” exceptions (default: 10).
without_websockets – Set to
Trueto disable use of WebSockets (see note below for an explanation). IfTrue, this method doesn’t return anything. (default:False).discussion_type – Set to
CHATto enable live discussion instead of traditional comments (default: None).
- Returns
A
Submissionobject for the newly created submission, unlesswithout_websocketsisTrue.- Raises
ClientExceptionifvideo_pathrefers to a file that is not a video.
Note
Reddit’s API uses WebSockets to respond with the link of the newly created post. If this fails, the method will raise
WebSocketException. Occasionally, the Reddit post will still be created. More often, there is an error with the image file. If you frequently get exceptions but successfully created posts, try setting thetimeoutparameter to a value above 10.To disable the use of WebSockets, set
without_websockets=True. This will make the method returnNone, though the post will still be created. You may wish to do this if you are running your program in a restricted network environment, or using a proxy that doesn’t support WebSockets connections.For example, to submit a video to
r/reddit_api_testdo:title = "My favorite movie" video = "/path/to/video.mp4" subreddit = await reddit.subreddit("reddit_api_test") await subreddit.submit_video(title, video)
See also
submit()to submit url posts and selftextssubmit_image()to submit imagessubmit_gallery(). to submit more than one image in the same post
-
await
subscribe(other_subreddits=None)¶ Subscribe to the subreddit.
- Parameters
other_subreddits – When provided, also subscribe to the provided list of subreddits.
For example, to subscribe to
r/test:subreddit = await reddit.subreddit("test") await subreddit.subscribe()
-
top(time_filter: str = 'all', **generator_kwargs: Union[str, int, Dict[str, str]]) → AsyncIterator[Any]¶ Return a
ListingGeneratorfor top submissions.- Parameters
time_filter – Can be one of: all, day, hour, month, week, year (default: all).
- Raises
ValueErroriftime_filteris invalid.
Additional keyword arguments are passed in the initialization of
ListingGenerator.This method can be used like:
reddit.domain("imgur.com").top("week") multireddit = await reddit.multireddit("samuraisam", "programming") multireddit.top("day") redditor = await reddit.redditor("spez") redditor.top("month") redditor = await reddit.redditor("spez") redditor.comments.top("year") redditor = await reddit.redditor("spez") redditor.submissions.top("all") subreddit = await reddit.subreddit("all") subreddit.top("hour")
-
await
traffic()¶ Return a dictionary of the subreddit’s traffic statistics.
- Raises
asyncprawcore.NotFoundwhen the traffic stats aren’t available to the authenticated user, that is, they are not public and the authenticated user is not a moderator of the subreddit.
The traffic method returns a dict with three keys. The keys are
day,hourandmonth. Each key contains a list of lists with 3 or 4 values. The first value is a timestamp indicating the start of the category (start of the day for thedaykey, start of the hour for thehourkey, etc.). The second, third, and fourth values indicate the unique pageviews, total pageviews, and subscribers, respectively.Note
The
hourkey does not contain subscribers, and therefore each sub-list contains three values.For example, to get the traffic stats for
r/test:subreddit = await reddit.subreddit("test") stats = await subreddit.traffic()
-
await
unsubscribe(other_subreddits=None)¶ Unsubscribe from the subreddit.
- Parameters
other_subreddits – When provided, also unsubscribe from the provided list of subreddits.
To unsubscribe from
r/test:subreddit = await reddit.subreddit("test") await subreddit.unsubscribe()
-
widgets¶ Provide an instance of
SubredditWidgets.Example usage
Get all sidebar widgets:
subreddit = await reddit.subreddit("redditdev") async for widget in subreddit.widgets.sidebar: print(widget)
Get ID card widget:
subreddit = await reddit.subreddit("redditdev") widget = await subreddit.widgets.id_card() print(widget)
-
wiki¶ Provide an instance of
SubredditWiki.This attribute can be used to discover all wikipages for a subreddit:
subreddit = await reddit.subreddit("iama") async for wikipage in subreddit.wiki: print(wikipage)
To fetch the content for a given wikipage try:
subreddit = await reddit.subreddit("iama") wikipage = await subreddit.wiki.get_page("proof") print(wikipage.content_md)
-
Note
This list of attributes is not complete. Async PRAW dynamically provides the attributes that Reddit returns via the API. Because those attributes are subject to change on Reddit’s end, Async 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.