Python class for opening Puredata and connecting on a socket with [netreceive].
Read more about Puredata aka Pd on crca.ucsd.edu/~msp/software.html
cd pdsocket/
python test.py
The networking protocol sent to Pd is FUDI and messages need to end with ;\n
pd.send('Hello Pd!;\n')
pd.send('some more...;\n...messages at once;\n')
- test on win
- close method for Pd-Socket
- Pd-0.43 compatibility
- write test
- build as package
- properly parse ;\n on receiving messages from Pd
- Enrique Erne