github3.py v1.3.0 AttributeError: iter_repos - PullRequest
0 голосов
/ 31 января 2019

Я пытаюсь перебрать все репозитории в частной организации.Вот пример кода, который не работает на моем компьютере (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"))

Когда я запускаю это, я получаю: AttributeError: iter_repos Трассировка указывает на строку 5, где япозвони iter_repos.

1 Ответ

0 голосов
/ 31 января 2019

Я полагаю, что вы хотите

   org.repositories(type="all")

iter_repos от pre-1.0 github3.py

...