简体   繁体   中英

Github API for Python : PyGithub - get a list of all commits for a particular repository

I am developing a script which requires me to get a list of all commits for a particular repository, as well as the date and time of commit. The Commit Class in the PyGithub API:

https://github.com/jacquev6/PyGithub/blob/master/doc/ReferenceOfClasses.md#class-commit

does not have any member for date-of-commit and time-of-commit. Any ideas on how to get the date and time of a commit using the API?

A bit late to answer, but you can get the information from the GitAuthor of the GitCommit of the Commit. This will print the dates of all the commits:

for commit in commits:
    if commit.commit is not None:
        print commit.commit.author.date

I think you need to call

commit.getStatuses()

and in each satsus there is attributes created_at and updated_at

from here: https://github.com/jacquev6/PyGithub/blob/master/doc/ReferenceOfClasses.md#class-commitstatus

Class CommitStatus

Attributes:

  • created_at: datetime.datetime
  • creator: NamedUser
  • description: string
  • id: integer
  • state: string
  • target_url: string
  • updated_at: datetime.datetime
   from github import Github

   gh = Github(base_url="", login_or_token="")

   repo = gh.get_repo(repo_name)

   #returned commits in a paginated list
   commits = repo.get_commits()

The technical post webpages of this site follow the CC BY-SA 4.0 protocol. If you need to reprint, please indicate the site URL or the original address.Any question please contact:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM