如何设置PyGithub方法的路径?

时间:2015-10-03 03:32:09

标签: python github github-api pygithub

我正在与PyGithub合作,以获得对我自己的github仓库的基本访问权限。大多数方法需要一个"路径"而且我不确定那是什么。我将在.get_contents()函数中使用哪些参数?简单的例子:

    from github import Github
    g = Github("***","***")
    repo = g.get_user().get_repo("my_projects")
    contents = repo.get_contents()

1 个答案:

答案 0 :(得分:0)

您需要传递以下参数:

路径 - 字符串 - 内容路径。

ref - string - 提交/分支/标记的名称。默认值:存储库的默认分支(通常是主分支)

E.g - repo.get_contents('config/version.rb','development')

查看更多here