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

Method get_app_installation

github/GithubIntegration.py:332–336  ·  view source on GitHub ↗

:calls: `GET /app/installations/{installation_id} `

(self, installation_id: int)

Source from the content-addressed store, hash-verified

330 return self._get_installed_app(url=f"/users/{username}/installation")
331
332 def get_app_installation(self, installation_id: int) -> Installation:
333 """
334 :calls: `GET /app/installations/{installation_id} <https://docs.github.com/en/rest/apps/apps#get-an-installation-for-the-authenticated-app>`
335 """
336 return self._get_installed_app(url=f"/app/installations/{installation_id}")
337
338 def get_app(self) -> GithubApp:
339 """

Callers 1

Calls 1

_get_installed_appMethod · 0.95

Tested by

no test coverage detected