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

Method get_installations

github/Organization.py:1563–1576  ·  view source on GitHub ↗

:calls: `GET /orgs/{org}/installations `_ :rtype: :class:`PaginatedList` of :class:`github.Installation.Installation`

(self)

Source from the content-addressed store, hash-verified

1561 )
1562
1563 def get_installations(self) -> PaginatedList[Installation]:
1564 """
1565 :calls: `GET /orgs/{org}/installations <https://docs.github.com/en/rest/reference/orgs#list-app-installations-for-an-organization>`_
1566 :rtype: :class:`PaginatedList` of :class:`github.Installation.Installation`
1567 """
1568
1569 return PaginatedList(
1570 github.Installation.Installation,
1571 self._requester,
1572 f"{self.url}/installations",
1573 None,
1574 headers=None,
1575 list_item="installations",
1576 )
1577
1578 def get_dependabot_alerts(
1579 self,

Callers 3

testGetInstallationsMethod · 0.45
testInstallationsMethod · 0.45
setUpMethod · 0.45

Calls 1

PaginatedListClass · 0.90

Tested by

no test coverage detected