我正在与 PyGithub 合作以获得对我自己的 github 存储库的基本访问权限。大多数方法都需要一个“路径”,我不确定那是什么。我将在 .get_contents() 函数中使用哪些参数?简单的例子:
from github import Github
g = Github("***","***")
repo = g.get_user().get_repo("my_projects")
contents = repo.get_contents()
我正在与 PyGithub 合作以获得对我自己的 github 存储库的基本访问权限。大多数方法都需要一个“路径”,我不确定那是什么。我将在 .get_contents() 函数中使用哪些参数?简单的例子:
from github import Github
g = Github("***","***")
repo = g.get_user().get_repo("my_projects")
contents = repo.get_contents()
您需要传递以下参数:
path - string - 内容路径。
ref - 字符串- 提交/分支/标签的名称。默认:存储库的默认分支(通常是 master)
例如 -repo.get_contents('config/version.rb','development')
在这里查看更多