Github ut からリポジトリを取得しようとしていますが、次のエラーが発生します。
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)
誰でもこれで私を助けることができますか?