├── LICENSE.txt ├── README.md ├── pyproject.toml └── src └── pystepseq ├── __init__.py ├── constants.py ├── help.py ├── lib ├── __init__.py ├── midi_functions.py ├── pink_noise.py └── scales.py ├── main.py ├── pystepseq.py └── tempotrigger.py /LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akjmicro/pystepseq/HEAD/LICENSE.txt -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akjmicro/pystepseq/HEAD/README.md -------------------------------------------------------------------------------- /pyproject.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akjmicro/pystepseq/HEAD/pyproject.toml -------------------------------------------------------------------------------- /src/pystepseq/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akjmicro/pystepseq/HEAD/src/pystepseq/__init__.py -------------------------------------------------------------------------------- /src/pystepseq/constants.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akjmicro/pystepseq/HEAD/src/pystepseq/constants.py -------------------------------------------------------------------------------- /src/pystepseq/help.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akjmicro/pystepseq/HEAD/src/pystepseq/help.py -------------------------------------------------------------------------------- /src/pystepseq/lib/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/pystepseq/lib/midi_functions.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akjmicro/pystepseq/HEAD/src/pystepseq/lib/midi_functions.py -------------------------------------------------------------------------------- /src/pystepseq/lib/pink_noise.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akjmicro/pystepseq/HEAD/src/pystepseq/lib/pink_noise.py -------------------------------------------------------------------------------- /src/pystepseq/lib/scales.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akjmicro/pystepseq/HEAD/src/pystepseq/lib/scales.py -------------------------------------------------------------------------------- /src/pystepseq/main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akjmicro/pystepseq/HEAD/src/pystepseq/main.py -------------------------------------------------------------------------------- /src/pystepseq/pystepseq.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akjmicro/pystepseq/HEAD/src/pystepseq/pystepseq.py -------------------------------------------------------------------------------- /src/pystepseq/tempotrigger.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akjmicro/pystepseq/HEAD/src/pystepseq/tempotrigger.py --------------------------------------------------------------------------------