A tool for writing PureData patches
Project description
PureData Compiler
This package allows you to write patches for PureData in Python.
Install
python -m pip install puredata-compiler # requires Python >=3.5
Usage
The compiler gives you creator functions to compose a patch. These functions add elements to the patch, using the content and connections you provide.
from puredata_compiler import Patch, write_file
def example():
"""Patch that increments a counter"""
patch = Patch()
obj, msg, floatatom, connect = patch.get_creators('obj, msg, floatatom, connect')
bang = msg('bang')
delay_params = msg('500', new_row=0, new_col=1)
delay_trig = obj('t b f', delay_params[0])
delay = obj('delay', delay_trig[0], delay_trig[1])
start_val = obj('f', (bang[0], delay[0]), x_pos=25, y_pos=125)
increment = floatatom(new_row=0)
current_val = obj('+', start_val[0], increment[0])
# connect is different - it takes an existing element and adds connections,
# so you can create circular structures
connect(start_val, (), current_val[0])
current_val_display = floatatom(current_val[0])
return patch
if __name__ == "__main__":
pd_example = example()
write_file('pd_example.pd', str(pd_example))
Result
Project details
Release history Release notifications | RSS feed
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
Built Distribution
File details
Details for the file puredata-compiler-0.0.1.tar.gz
.
File metadata
- Download URL: puredata-compiler-0.0.1.tar.gz
- Upload date:
- Size: 5.1 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/1.13.0 pkginfo/1.5.0.1 requests/2.22.0 setuptools/41.2.0 requests-toolbelt/0.9.1 tqdm/4.34.0 CPython/3.7.4
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 3f595b910de27e82119b645db5a9d3a7f3fc5ce2502386794742a45a242cd282 |
|
MD5 | dda1c8e66ba9688ca396fea47b1ec78b |
|
BLAKE2b-256 | 81d3dc91a6634ea1acc28912b411dec7733a07c3c19172793974a9f8f7aa1995 |
File details
Details for the file puredata_compiler-0.0.1-py3-none-any.whl
.
File metadata
- Download URL: puredata_compiler-0.0.1-py3-none-any.whl
- Upload date:
- Size: 5.7 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/1.13.0 pkginfo/1.5.0.1 requests/2.22.0 setuptools/41.2.0 requests-toolbelt/0.9.1 tqdm/4.34.0 CPython/3.7.4
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 5d42009c518b549cf764eef04f37eb2bab93a518d8af0cdc41ca8dd2543bea52 |
|
MD5 | da19d351a05903eb95f6e20b545f03c8 |
|
BLAKE2b-256 | e8f49d63d50bac18a586c055981a169b22bcb725b01ee5fbb450d96470d98261 |