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

Method get_oauth_application

github/MainClass.py:1027–1032  ·  view source on GitHub ↗
(self, client_id: str, client_secret: str)

Source from the content-addressed store, hash-verified

1025 return self.create_from_raw_data(*pickle.load(f))
1026
1027 def get_oauth_application(self, client_id: str, client_secret: str) -> ApplicationOAuth:
1028 return github.ApplicationOAuth.ApplicationOAuth(
1029 self.__requester,
1030 headers={},
1031 attributes={"client_id": client_id, "client_secret": client_secret},
1032 )
1033
1034 def get_app(self, slug: Opt[str] = NotSet) -> GithubApp:
1035 """

Callers 2

setUpMethod · 0.80

Calls

no outgoing calls

Tested by

no test coverage detected