:calls: `GET /orgs/{org} `_
(self, org: str)
| 439 | return PaginatedList(github.NamedUser.NamedUser, self.__requester, "/users", url_parameters) |
| 440 | |
| 441 | def get_organization(self, org: str) -> Organization: |
| 442 | """ |
| 443 | :calls: `GET /orgs/{org} <https://docs.github.com/en/rest/reference/orgs>`_ |
| 444 | """ |
| 445 | assert isinstance(org, str), org |
| 446 | org = urllib.parse.quote(org, safe="") |
| 447 | url = f"/orgs/{org}" |
| 448 | return github.Organization.Organization(self.__requester, url=url) |
| 449 | |
| 450 | def get_organizations(self, since: Opt[int] = NotSet) -> PaginatedList[Organization]: |
| 451 | """ |
no outgoing calls
no test coverage detected