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

Method get_org_installation

github/GithubIntegration.py:310–315  ·  view source on GitHub ↗

:calls: `GET /orgs/{org}/installation `

(self, org: str)

Source from the content-addressed store, hash-verified

308 )
309
310 def get_org_installation(self, org: str) -> Installation:
311 """
312 :calls: `GET /orgs/{org}/installation <https://docs.github.com/en/rest/apps/apps#get-an-organization-installation-for-the-authenticated-app>`
313 """
314 org = urllib.parse.quote(org, safe="")
315 return self._get_installed_app(url=f"/orgs/{org}/installation")
316
317 def get_repo_installation(self, owner: str, repo: str) -> Installation:
318 """

Calls 1

_get_installed_appMethod · 0.95

Tested by

no test coverage detected