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

Method get_user_installation

github/GithubIntegration.py:325–330  ·  view source on GitHub ↗

:calls: `GET /users/{username}/installation `

(self, username: str)

Source from the content-addressed store, hash-verified

323 return self._get_installed_app(url=f"/repos/{owner}/{repo}/installation")
324
325 def get_user_installation(self, username: str) -> Installation:
326 """
327 :calls: `GET /users/{username}/installation <https://docs.github.com/en/rest/apps/apps#get-a-user-installation-for-the-authenticated-app>`
328 """
329 username = urllib.parse.quote(username)
330 return self._get_installed_app(url=f"/users/{username}/installation")
331
332 def get_app_installation(self, installation_id: int) -> Installation:
333 """

Callers 1

Calls 1

_get_installed_appMethod · 0.95

Tested by

no test coverage detected