How can I create a new repository in an organization with PyGithub on Github? In particular I like to know how to use the create_repo
method?
My question is identical to this question, but I would like the created repository to appear in an organization.
The solution to creating a repo without the organization level is:
g = Github("username", "password")
user = g.get_user()
repo = user.create_repo(full_name)
See Question&Answers more detail:
os 与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…