A New Algorithmic MIDI Sequencer in Pure Python (Open Source)
A stateful algorithmic MIDI sequencer for Python. Contribute to simonholliday/subsequence development by creating an account on GitHub. (more…)
Read more »
Many languages start running your program by calling a function of
yours that must have a specific name. In C (and many C derived
languages), this is just called main(); in Go, it’s main.main()
(the main() function in the main package). Python famously
do… Read more