我正在尝试遍历私有组织中的所有存储库。以下是一些无法在我的计算机上运行的示例代码(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。
答案 0 :(得分:1)
我相信你想要
org.repositories(type="all")
iter_repos
来自1.0之前的github3.py