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

Method is_starred

github/Gist.py:284–289  ·  view source on GitHub ↗

:calls: `GET /gists/{gist_id}/star `_

(self)

Source from the content-addressed store, hash-verified

282 )
283
284 def is_starred(self) -> bool:
285 """
286 :calls: `GET /gists/{gist_id}/star <https://docs.github.com/en/rest/reference/gists>`_
287 """
288 status, headers, data = self._requester.requestJson("GET", f"{self.url}/star")
289 return status == 204
290
291 def reset_starred(self) -> None:
292 """

Callers 1

testStarringMethod · 0.80

Calls 1

requestJsonMethod · 0.80

Tested by

no test coverage detected