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

Method get_following

github/NamedUser.py:447–451  ·  view source on GitHub ↗

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

(self)

Source from the content-addressed store, hash-verified

445 return github.PaginatedList.PaginatedList(NamedUser, self._requester, f"{self.url}/followers", None)
446
447 def get_following(self) -> PaginatedList[NamedUser]:
448 """
449 :calls: `GET /users/{username}/following <https://docs.github.com/en/rest/reference/users#followers>`_
450 """
451 return github.PaginatedList.PaginatedList(NamedUser, self._requester, f"{self.url}/following", None)
452
453 def get_gists(self, since: Opt[datetime] = NotSet) -> PaginatedList[Gist]:
454 """

Callers 2

testGetFollowingMethod · 0.45
testFollowingMethod · 0.45

Calls

no outgoing calls

Tested by

no test coverage detected