如何使用 PyGithub 在 Github 中创建私有存储库
How to create private repository in Github using PyGithub
我想出了如何使用 PyGIthub 通过这种方法在 Github 上创建存储库:
import sys
from github import Github
g = Github('AryanshMahato', 'GITHUB_PASSWORD')
user = g.get_user()
repo = user.create_repo(folderName)
但在这种情况下,PyGithub 创建了一个 public 存储库。
如何使用 Py 创建私有存储库Github?
您可以将private
参数设置为True
repo = user.create_repo(folderName, private=True)
我想出了如何使用 PyGIthub 通过这种方法在 Github 上创建存储库:
import sys
from github import Github
g = Github('AryanshMahato', 'GITHUB_PASSWORD')
user = g.get_user()
repo = user.create_repo(folderName)
但在这种情况下,PyGithub 创建了一个 public 存储库。
如何使用 Py 创建私有存储库Github?
您可以将private
参数设置为True
repo = user.create_repo(folderName, private=True)