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

Method get_project

github/MainClass.py:521–526  ·  view source on GitHub ↗

:calls: `GET /projects/{project_id} `_

(self, id: int)

Source from the content-addressed store, hash-verified

519 )
520
521 def get_project(self, id: int) -> Project:
522 """
523 :calls: `GET /projects/{project_id} <https://docs.github.com/en/rest/reference/projects#get-a-project>`_
524 """
525 url = f"/projects/{id:d}"
526 return github.Project.Project(self.__requester, url=url, accept=Consts.mediaTypeProjectsPreview)
527
528 def get_project_column(self, id: int) -> ProjectColumn:
529 """

Callers 7

setUpMethod · 0.80
testLazyAttributesMethod · 0.80
setUpMethod · 0.80
setUpMethod · 0.80
testDeleteMethod · 0.80

Calls

no outgoing calls

Tested by

no test coverage detected