MCPcopy Index your code
hub / github.com/PyGithub/PyGithub / get_followers

Method get_followers

github/NamedUser.py:441–445  ·  view source on GitHub ↗

:calls: `GET /users/{username}/followers `_

(self)

Source from the content-addressed store, hash-verified

439 return github.PaginatedList.PaginatedList(github.Event.Event, self._requester, f"{self.url}/events", None)
440
441 def get_followers(self) -> PaginatedList[NamedUser]:
442 """
443 :calls: `GET /users/{username}/followers <https://docs.github.com/en/rest/reference/users#followers>`_
444 """
445 return github.PaginatedList.PaginatedList(NamedUser, self._requester, f"{self.url}/followers", None)
446
447 def get_following(self) -> PaginatedList[NamedUser]:
448 """

Callers 3

testGetFollowersMethod · 0.45
testFollowingMethod · 0.45

Calls

no outgoing calls

Tested by

no test coverage detected