github3.py v1.3.0 属性错误:iter_repos



我正在尝试迭代私人组织中的所有存储库。以下是一些在我的机器上不起作用的示例代码(Windows 10,Python 3.6.5):

import github3
session = github3.login(token = "A token that works with other github3.py functions and also has all permissions for testing")
org = session.organization("private organization name")
repos = list(org.iter_repos(type = "all"))

当我运行这个时,我得到: 属性错误: iter_repos回溯指向我称之为iter_repos的第 5 行。

我相信你想要

   org.repositories(type="all")

iter_repos来自 1.0 之前 github3.py

相关内容

  • 没有找到相关文章

最新更新