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

Method get_users

github/MainClass.py:431–439  ·  view source on GitHub ↗

:calls: `GET /users `_

(self, since: Opt[int] = NotSet)

Source from the content-addressed store, hash-verified

429 return github.NamedUser.NamedUser(self.__requester, url=url)
430
431 def get_users(self, since: Opt[int] = NotSet) -> PaginatedList[NamedUser]:
432 """
433 :calls: `GET /users <https://docs.github.com/en/rest/reference/users>`_
434 """
435 assert since is NotSet or isinstance(since, int), since
436 url_parameters = dict()
437 if since is not NotSet:
438 url_parameters["since"] = since
439 return PaginatedList(github.NamedUser.NamedUser, self.__requester, "/users", url_parameters)
440
441 def get_organization(self, org: str) -> Organization:
442 """

Callers 3

testGetUsersMethod · 0.45
testGetUsersSinceMethod · 0.45

Calls 1

PaginatedListClass · 0.90

Tested by

no test coverage detected