These are the Synthizer Python bindings. Se the Synthizer manual for more details and example usage.
This is unmaintained software. Issues will be ignored. PRs will be closed without merging. If it is of use to you, please feel free to fork.
You probably want the Pypi version, which will just pip install
for you
without a problem. But if you want to install from this repository it's sadly
more involved than just depending on it, since the Python bindings need to
produce a vendored version of Synthizer itself. It's possible to get source
distributions and wheels from the CI
runs, or you can follow
the following procedure:
- Clone this repo including the submodule:
git clone --recursive https://github.com/synthizer/synthizer-python
- From the root of this repo,
python synthizer-c/vendor.py synthizer-vendored
- Then
python setup.py install
orbdist_wheel
or whatever.