如何在不登录用户帐户的情况下使用Python / PyGithub获取Github仓库中所有文件名的列表?
如果我只知道用户名而不是他/她的密码,我该如何使用github.Github(self.login, self.password)
?
答案 0 :(得分:0)
在获取GitHub对象时,您可以将密码保持为“None
”的source code shows。
def __init__(self, login_or_token, password, base_url, timeout, client_id, client_secret, user_agent, per_page, api_preview):
self._initializeDebugFeature()
if password is not None:
login = login_or_token
if atLeastPython3:
self.__authorizationHeader = "Basic " + base64.b64encode((login + ":" + password).encode("utf-8")).decode("utf-8").replace('\n', '') # pragma no cover (Covered by Authentication.testAuthorizationHeaderWithXxx with Python 3)
else:
self.__authorizationHeader = "Basic " + base64.b64encode(login + ":" + password).replace('\n', '')
elif login_or_token is not None:
token = login_or_token
self.__authorizationHeader = "token " + token
else:
self.__authorizationHeader = None
那是tested here:
def testLoggingWithoutAuthentication(self):
self.assertEqual(github.Github().get_user("jacquev6").name, "Vincent Jacques")
从那里,你可以获得任何 public repo并列出他们的文件。
您只需要“登录”私人回购。