是否有 libpd Python API 的详细文档?

is there a detailed documentation for libpd Python API?

我正在为 Python 使用 libpd,我似乎找不到详细的 API。我至少想要一个简单的可用方法列表。

我能找到的最好的是这里:https://github.com/libpd/libpd/wiki/Python-API 它的标题为 "Detailed API Documentation",但在那之下,它只是说:"Anyone care to elaborate or link here?"

如果它不存在,我想边走边记录它,但如果它已经存在于某个地方,那(以及这么多的弄清楚)会有点浪费时间。

谢谢!!

假设您真的要 detailed documentation for the API 而不是 detailed API:

libpd 的 python-API 只是 C-API.

的薄包装

因为 C-API 是 documented in the wiki 你最好只使用那个。

所以,我发现您可以使用 C API 文档,但是还有更多方法和一个 PdManager class 添加到 Python 版本中,但没有记录(这是我想知道的事情)

所以我在这里记录了那些额外的东西:

http://mikesperone.com/files/libpdPythonAPIdoc.pdf

它不是很详细,很多东西只是对 C API 中方法的引用,但希望它能帮助其他正在寻找的人