1

I'm working with libpd for Python, and I can't seem to find a detailed API. I would at least like a simple list of methods available.

The best I can find is here: https://github.com/libpd/libpd/wiki/Python-API Which has a heading for "Detailed API Documentation", but under that, it just says: "Anyone care to elaborate or link here?"

If it does not exist, I would like to document it as I go, but if it already exists somewhere, that (and so much figuring out) would be a bit of a waste of time.

Thank you!!

4

2 回答 2

1

假设您真的要求 adetailed documentation for the API 而不是 a detailed API

libpd 的 python-API 只是 C-API 的一个薄包装。

由于 C-API记录在 wiki 中,因此您最好只使用那个。

于 2016-07-27T07:55:00.727 回答
0

所以,我发现你可以使用 C API 文档,但是在 Python 版本中添加了更多方法和 PdManager 类,但没有记录(这是我想知道的)

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

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

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

于 2016-08-09T17:36:55.577 回答