├── .github └── workflows │ ├── publish_to_test-pypi.yml │ └── pytest.yml ├── .gitignore ├── LICENSE.txt ├── README.md ├── examples ├── Nicol-LoopE-M.wav ├── basic_example.py ├── composing_routines.py ├── defining_outputs.py └── multiple_returns.py ├── flucoma ├── __init__.py ├── core.py ├── dataset.py ├── exceptions.py ├── fluid.py ├── returns.py └── utils.py ├── requirements.txt ├── ruff.toml ├── setup.py └── test ├── Nicol-LoopE-M.wav ├── test_algorithms.py ├── test_classes.py ├── test_file.wav ├── test_integration.py └── test_utils.py /.github/workflows/publish_to_test-pypi.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamesb93/python-flucoma/HEAD/.github/workflows/publish_to_test-pypi.yml -------------------------------------------------------------------------------- /.github/workflows/pytest.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamesb93/python-flucoma/HEAD/.github/workflows/pytest.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamesb93/python-flucoma/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamesb93/python-flucoma/HEAD/LICENSE.txt -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamesb93/python-flucoma/HEAD/README.md -------------------------------------------------------------------------------- /examples/Nicol-LoopE-M.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamesb93/python-flucoma/HEAD/examples/Nicol-LoopE-M.wav -------------------------------------------------------------------------------- /examples/basic_example.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamesb93/python-flucoma/HEAD/examples/basic_example.py -------------------------------------------------------------------------------- /examples/composing_routines.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamesb93/python-flucoma/HEAD/examples/composing_routines.py -------------------------------------------------------------------------------- /examples/defining_outputs.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamesb93/python-flucoma/HEAD/examples/defining_outputs.py -------------------------------------------------------------------------------- /examples/multiple_returns.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamesb93/python-flucoma/HEAD/examples/multiple_returns.py -------------------------------------------------------------------------------- /flucoma/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /flucoma/core.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamesb93/python-flucoma/HEAD/flucoma/core.py -------------------------------------------------------------------------------- /flucoma/dataset.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamesb93/python-flucoma/HEAD/flucoma/dataset.py -------------------------------------------------------------------------------- /flucoma/exceptions.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamesb93/python-flucoma/HEAD/flucoma/exceptions.py -------------------------------------------------------------------------------- /flucoma/fluid.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamesb93/python-flucoma/HEAD/flucoma/fluid.py -------------------------------------------------------------------------------- /flucoma/returns.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamesb93/python-flucoma/HEAD/flucoma/returns.py -------------------------------------------------------------------------------- /flucoma/utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamesb93/python-flucoma/HEAD/flucoma/utils.py -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamesb93/python-flucoma/HEAD/requirements.txt -------------------------------------------------------------------------------- /ruff.toml: -------------------------------------------------------------------------------- 1 | # Never enforce `E501` (line length violations). 2 | ignore = ["E501"] -------------------------------------------------------------------------------- /setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamesb93/python-flucoma/HEAD/setup.py -------------------------------------------------------------------------------- /test/Nicol-LoopE-M.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamesb93/python-flucoma/HEAD/test/Nicol-LoopE-M.wav -------------------------------------------------------------------------------- /test/test_algorithms.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamesb93/python-flucoma/HEAD/test/test_algorithms.py -------------------------------------------------------------------------------- /test/test_classes.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamesb93/python-flucoma/HEAD/test/test_classes.py -------------------------------------------------------------------------------- /test/test_file.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamesb93/python-flucoma/HEAD/test/test_file.wav -------------------------------------------------------------------------------- /test/test_integration.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /test/test_utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamesb93/python-flucoma/HEAD/test/test_utils.py --------------------------------------------------------------------------------