我正在使用此函数使用PyGithub获取最新的提交 url :
from github import Github
def getLastCommitURL():
encrypted = 'mypassword'
# naiveDecrypt defined elsewhere
g = Github('myusername', naiveDecrypt(encrypted))
org = g.get_organization('mycompany')
code = org.get_repo('therepo')
commits = code.get_commits()
last = commits[0]
return last.html_url
它有效,但似乎让 Github 对我的 IP 地址不满意,并且对生成的 url 响应缓慢。我有没有更有效的方法来做到这一点?