MCPcopy
hub / github.com/praw-dev/praw / blocked

Method blocked

praw/models/user.py:66–68  ·  view source on GitHub ↗

r"""Return a :class:`.RedditorList` of blocked :class:`.Redditor`\ s.

(self)

Source from the content-addressed store, hash-verified

64 super().__init__(reddit, _data=None)
65
66 def blocked(self) -> list[models.Redditor]:
67 r"""Return a :class:`.RedditorList` of blocked :class:`.Redditor`\ s."""
68 return self._reddit.get(API_PATH["blocked"])
69
70 def contributor_subreddits(self, **generator_kwargs: Any) -> Iterator[models.Subreddit]:
71 r"""Return a :class:`.ListingGenerator` of contributor :class:`.Subreddit`\ s.

Callers 3

test_blockedMethod · 0.80
test_blocked_fullnameMethod · 0.80
test_unblockMethod · 0.80

Calls 1

getMethod · 0.80

Tested by 3

test_blockedMethod · 0.64
test_blocked_fullnameMethod · 0.64
test_unblockMethod · 0.64