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