Gist¶
-
class
github.Gist.Gist¶ This class represents Gists. The reference can be found here https://docs.github.com/en/rest/reference/gists
-
create_comment(body: str) → GistComment¶ Calls: POST /gists/{gist_id}/comments
-
create_fork() → github.Gist.Gist¶ Calls: POST /gists/{id}/forks
-
delete() → None¶ Calls: DELETE /gists/{id}
-
edit(description: Opt[str] = NotSet, files: Opt[dict[str, InputFileContent | None]] = NotSet) → None¶ Calls: PATCH /gists/{id}
-
get_comment(id: int) → GistComment¶ Calls: GET /gists/{gist_id}/comments/{id}
-
get_comments() → PaginatedList[GistComment]¶ Calls: GET /gists/{gist_id}/comments
-
is_starred() → bool¶ Calls: GET /gists/{id}/star
-
reset_starred() → None¶ Calls: DELETE /gists/{id}/star
-
set_starred() → None¶ Calls: PUT /gists/{id}/star
-