Any tutorials on how to use PD in Python?
-
PD in Python?
-
@MDobleZ There have been externals made a long long time ago, that will still work with Pd extended but not with a recent vanilla.
If you mean getting them talking to each other, then [netsend] and [netreceive] in Pd will talk to pdsend and pdreceive binaries called in python.
You will find the binaries in your Pd/bin folder, and you need to copy them somewhere that Python will find them.
You will find some help on this forum, but the site search doesn't work well..
Try searching in Google or another search engine for "pdpatchrepo python".
David. -
-
Maybe these links help? I have not tested, just have been reading about it:
https://pdpy-org.github.io/doc/install_libpd.html
https://github.com/libpd/libpd
https://forum.pdpatchrepo.info/topic/14087/pd-and-python-py-pyext-external
https://forum.pdpatchrepo.info/topic/11732/commands-for-forum-search-engine
Many times (but not alwys) newer search results are more useful today than >10 years ones. Because many things have changed in the meantime. PDextended still runs but is really outdated and not recommended. -
Check py4pd too, it's available through deken. It's still beta, but it's new, so not outdated. https://github.com/charlesneimog/py4pd
-
Do you look for pd patches generation throw python code or python code usage in a pd patch ?
Work in progress : FCPD a FreeCAD PureData connexion
-
@FFW I want to incorporate the patch in a python code; like we do with Android.
-
Thanks for all the replies. I'm gonna look into them.