这是我对stackoverflow的第一个问题。所以请善待,如果我不是主题或精确,并帮助我下次改进。
我正在尝试使用 pyGithub 通过 Python3 修改和现有 Github Gist。我创建了一个 API 令牌并且身份验证工作正常,但我正在努力编辑 Gist。我找不到合适的例子,这让我很清楚。
这是我的代码:
from github import Github
g = Github("XXX")
test2 = {"description": "the description for this gist",
"files": {"filter": {"content": "updated file contents"},
"Task": {"filename": "new_name.txt",
"content": "modified content"},
"new_file.txt": {
"content": "a new file"
}
}
}
g.get_gist(id="b2c5668fefe1f2e80252aabf4ef4e96c").edit(test2)
这是我收到的错误消息:
Traceback (most recent call last):
File "gist.py", line 15, in <module>
g.get_gist(id="b2c5668fefe1f2e80252aabf4ef4e96c").edit(test2)
File "/Users/DSpreitz/ogn-silentwings/venv/lib/python3.6/site-packages/github/Gist.py", line 249, in edit
assert description is github.GithubObject.NotSet or isinstance(description, str), description
AssertionError: {'description': 'the description for this gist', 'files': {'filter': {'content': 'updated file contents'}}}
我在这里找到了 pygithub lib 的一些描述: pyGithub Docu
这是我要修改的要点:要点
非常感谢解决此问题的任何帮助。
多米尼克