Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
使用 PyGithub,我正在尝试使用多个主题搜索 github 存储库。
这适用于一个主题:
Github.search_repositories("topic:topicname1")
但是如何添加其他人?我试过“topic:topicname1+topic:topicname2”,但这似乎不起作用。添加多个主题参数也不起作用。
有一件很明显的事情我忘记尝试了,但它确实有效!只需在每个主题之间留一个空格。
Github.search_repositories("topic:topicname1 topic:topicname2")