PyGitHub:无法访问我团队的私有存储库

时间:2019-01-10 16:31:37

标签: python github-api pygithub

我想访问我所属团队的私有存储库。但是,我无法访问它。它将引发如下异常:

UnknownObjectException: 404 {u'documentation_url': u'https://developer.github.com/v3/repos/#list-teams', u'message': u'Not Found'}

我的代码:

from github import Github
import pandas as pd


git = Github("token")
org = git.get_organization('org')

org.get_repo('repo_name')

在上面的语句中抛出n错误。

我想访问此存储库并获取有权访问该存储库的团队数。但是,在上述代码的最后一行出现了上述错误。

有人可以帮我解决这个问题吗?

3 个答案:

答案 0 :(得分:0)

使用了哪个repo_name?

示例:team_X / repo_1

如果直接使用github():repo = github().get_repo("team_X/repo_1")

如果使用org对象获取存储库:repo = org.get_repo("repo_1")

答案 1 :(得分:0)

对于Github Enterprise:

from github import Github  

g = Github(base_url="https://your_host_name/api/v3", login_or_token="your_access_token") 
org = g.get_organization("your_org")  
repo = org.get_repo(repo_name)   # getting the repo 
print(repo)

对于Github:

from github import Github  

g = Github(username,password)) 
repo = g.get_repo(repo_name)   # getting the repo 
print(repo)

答案 2 :(得分:0)

对于像我一样具有安全意识并想要只读个人访问令牌的未来读者,要读取您的私人存储库,您需要启用此功能(并且 OP 必须生成一个新令牌)。

github PAT