github3.py v1.3.0 AttributeError:iter_repos

时间:2019-01-31 02:25:38

标签: python github github3.py

我正在尝试遍历私有组织中的所有存储库。以下是一些无法在我的计算机上运行的示例代码(Windows 10,Python 3.6.5):

# Loop through the dataframe and apply model
Ind <- sapply(split(df, list(df$Region,df$Illness_Code)), function(x)nrow(x)>1)

out <- lapply(
        split(df, list(df$Region, df$Illness_Code))[Ind],
         function(c){
          m <- lm(formula = COUNT ~ YEAR, data = c)
          coef(m)
         })

运行此命令时,我得到:     AttributeError:iter_repos 追溯指向第5行,我称之为iter_repos。

1 个答案:

答案 0 :(得分:1)

我相信你想要

   org.repositories(type="all")

iter_repos来自1.0之前的github3.py