CustomWidget
- class praw.models.CustomWidget(reddit: praw.Reddit, _data: Dict[str, Any])
Class to represent a custom widget.
Find an existing one:
custom = None widgets = reddit.subreddit("test").widgets for widget in widgets.sidebar: if isinstance(widget, praw.models.CustomWidget): custom = widget break print(custom.text) print(custom.css)
Create one:
widgets = reddit.subreddit("test").widgets styles = {"backgroundColor": "#FFFF66", "headerColor": "#3333EE"} custom = widgets.mod.add_custom_widget( short_name="My custom widget", text="# Hello world!", css="/**/", height=200, image_data=[], styles=styles, )
For more information on creation, see
add_custom_widget()
.Update one:
new_styles = {"backgroundColor": "#FFFFFF", "headerColor": "#FF9900"} custom = custom.mod.update(shortName="My fav customization", styles=new_styles)
Delete one:
custom.mod.delete()
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
css
The CSS of the widget, as a
str
.height
The height of the widget, as an
int
.id
The widget ID.
imageData
A
list
ofImageData
that belong to the widget.kind
The widget kind (always
"custom"
).shortName
The short name of the widget.
styles
A
dict
with the keys"backgroundColor"
and"headerColor"
.stylesheetUrl
A link to the widget’s stylesheet.
subreddit
The
Subreddit
the button widget belongs to.text
The text contents, as Markdown.
textHtml
The text contents, as HTML.
- __init__(reddit: praw.Reddit, _data: Dict[str, Any])
Initialize a
CustomWidget
instance.
- mod() praw.models.WidgetModeration
Get an instance of
WidgetModeration
for this widget.Note
Using any of the methods of
WidgetModeration
will likely make the data in theSubredditWidgets
that this widget belongs to outdated. To remedy this, callrefresh()
.