我正在使用Python的PyGithub库,并希望从最近关闭到最老的已关闭的文件中获得一个已关闭的prs列表。但是,PyGithub文档没有显示参数可用的选项(特别是用于“排序”的变量)。我该怎么做呢?会是sorted=newest之类的吗?
发布于 2022-09-01 08:22:57
这个答复应该为你回答:https://github.com/PyGithub/PyGithub/issues/2233#issuecomment-1130520989
基于GitHub文档,您可以使用sort="created" sort="updated"等
Can be one of: created, updated, popularity, long-runninghttps://stackoverflow.com/questions/72178775
复制相似问题