CustomWidget
- class asyncpraw.models.CustomWidget(reddit: asyncpraw.Reddit, _data: Dict[str, Any])
Class to represent a custom widget.
Find an existing one:
custom = None subreddit = await reddit.subreddit("test") widgets = subreddit.widgets async for widget in widgets.sidebar(): if isinstance(widget, asyncpraw.models.CustomWidget): custom = widget break print(custom.text) print(custom.css)
Create one:
subreddit = await reddit.subreddit("test") widgets = subreddit.widgets styles = {"backgroundColor": "#FFFF66", "headerColor": "#3333EE"} custom = await 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 = await custom.mod.update(shortName="My fav customization", styles=new_styles)
Delete one:
await custom.mod.delete()
Typical Attributes
Note
This table describes attributes that typically belong to objects of this class. Async PRAW dynamically provides the attributes that Reddit returns via the API. Since those attributes are subject to change on Reddit’s end, Async 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
cssThe CSS of the widget, as a
str.heightThe height of the widget, as an
int.idThe widget ID.
imageDataA
listofImageDatathat belong to the widget.kindThe widget kind (always
"custom").shortNameThe short name of the widget.
stylesA
dictwith the keys"backgroundColor"and"headerColor".stylesheetUrlA link to the widget’s stylesheet.
subredditThe
Subredditthe button widget belongs to.textThe text contents, as Markdown.
textHtmlThe text contents, as HTML.
- __init__(reddit: asyncpraw.Reddit, _data: Dict[str, Any])
Initialize a
CustomWidgetinstance.
- mod() asyncpraw.models.WidgetModeration
Get an instance of
WidgetModerationfor this widget.Note
Using any of the methods of
WidgetModerationwill likely make outdated the data in theSubredditWidgetsthat this widget belongs to. To remedy this, callrefresh().