在PyResto文档中the relations section的最后,我们在the github API中看到了一个标记的模型:
class Tag(GitHubModel):
_path = '/repos/{user}/{repo}/tags/{name}'
_pk = ('user', 'repo', 'name')
commit = Foreign(Commit, embedded=True)
但是,我在Github API中找不到任何这样的REST路径:
答案 0 :(得分:0)
他们的文档部分是在一年前写的。我可以证明(个人作为github3.py的作者)API从那时起已经发生了很大的变化。我不记得这个端点曾经存在,但是如果它确实存在,那么它已被长期删除。此外,它可能永远不会存在,文档的作者可能记得它在API的第2版中(我认为去年那时仍然支持)。