Widget

class asyncpraw.models.Widget(reddit: asyncpraw.Reddit, _data: Dict[str, Any])

Base class to represent a Widget.

__init__(reddit: asyncpraw.Reddit, _data: Dict[str, Any])

Initialize a Widget instance.

mod() asyncpraw.models.WidgetModeration

Get an instance of WidgetModeration for this widget.

Note

Using any of the methods of WidgetModeration will likely make outdated the data in the SubredditWidgets that this widget belongs to. To remedy this, call refresh().

classmethod parse(data: Dict[str, Any], reddit: asyncpraw.Reddit) Any

Return an instance of cls from data.

Parameters
  • data – The structured data.

  • reddit – An instance of Reddit.