IDCard#
- class praw.models.IDCard(reddit: praw.Reddit, _data: Dict[str, Any])#
Class to represent an ID card widget.
widgets = reddit.subreddit("test").widgets id_card = widgets.id_card print(id_card.subscribersText)
Update one:
widgets.id_card.mod.update(currentlyViewingText="Bots")
Typical Attributes
Note
This table describes attributes that typically belong to objects of this class. PRAW dynamically provides the attributes that Reddit returns via the API. Since those attributes are subject to change on Reddit’s end, PRAW makes no effort to document any new/removed/changed attributes, other than to instruct you on how to discover what is available. As a result, this table of attributes may not be complete. See Determine Available Attributes of an Object for detailed information.
If you would like to add an attribute to this table, feel free to open a pull request.
Attribute
Description
currentlyViewingCountThe number of redditors viewing the subreddit.
currentlyViewingTextThe text displayed next to the view count. For example,
"users online".descriptionThe subreddit description.
idThe widget ID.
kindThe widget kind (always
"id-card").shortNameThe short name of the widget.
stylesA
dictwith the keys"backgroundColor"and"headerColor".subredditThe
Subredditthe button widget belongs to.subscribersCountThe number of subscribers to the subreddit.
subscribersTextThe text displayed next to the subscriber count. For example, “users subscribed”.
- mod() praw.models.WidgetModeration#
Get an instance of
WidgetModerationfor this widget.Note
Using any of the methods of
WidgetModerationwill likely make the data in theSubredditWidgetsthat this widget belongs to outdated. To remedy this, callrefresh().