我正在尝试从我的 Github 获取存储库,但出现以下错误:
HTTPSConnectionPool(host='github.com', port=443): Max retries exceeded with url: /tejasshah2227/user/repos (Caused by ConnectTimeoutError(<urllib3.connection.VerifiedHTTPSConnection object at 0x0000024E647925F8>, 'Connection to github.com timed out. (connect timeout=15)'))
我想我收到这个错误是因为我通过代理访问它。但我找不到任何可以帮助我解决这个问题的东西。
以下是我的代码:
from github import Github
g = Github("userID", "password")
print(g.get_user())
for repo in g.get_user().get_repos():
print(repo.name)
另外,当我打印这个时:
print(g.get_user())
我得到以下输出:
AuthenticatedUser(login=None)
任何人都可以帮我解决这个问题吗?