This is a library to do audio synthesis and music composition. Its goal is to make the interface as simple as possible to use with as short a learning curve as possible.
It is written in pure python, and supports python >=3.6.
$ pip install sound-machine
You probably want to use the PyPy interpreter, expecially if you expect to do any sort of real-time synthesis. Here are some instructions on setting up a virtual environment with pypy.
First, install pypy and the pypy-dev package (or equivilant) from your OS's package manager.
Then, make sure you have virtualenvwrapper
installed.
Finally:
mkvirtualenv --python=`which pypy` sound
pip install sound-machine
This is a python module.
To use it, launch a python shell, then type import sound
.
It would be a good idea to do this in the IPython shell so you can use tab-autocomplete to browse the module contents.
Read it here!