client.scripts.list_python3_git_commits

A method of the Scripts endpoint.

list_python3_git_commits(id: int) ListResponse

Get the git commits for an item on the current branch

API URL: GET /scripts/python3/{id}/git/commits

import civis
client = civis.APIClient()
response = client.scripts.list_python3_git_commits(...)
Parameters:
idint

The ID of the item.

Returns:
civis.ListResponse
  • commit_hashstr

    The SHA of the commit.

  • author_namestr

    The name of the commit’s author.

  • datestr (time)

    The commit’s timestamp.

  • messagestr

    The commit message.