CODE_OF_CONDUCT.md
LICENSE
MANIFEST.in
Makefile
README.md
conftest.py
pyproject.toml
docs/Makefile
docs/__init__.py
docs/make.bat
docs/notebooks/scopes/scopes.ipynb
docs/notebooks/supercollider-symposium-2025/apsara.jpg
docs/notebooks/supercollider-symposium-2025/presentation.css
docs/notebooks/supercollider-symposium-2025/presentation.ipynb
docs/notebooks/supercollider-symposium-2025/qr-bio.png
docs/notebooks/supercollider-symposium-2025/qr-github.png
docs/notebooks/supercollider-symposium-2025/rise.css
docs/source/.gitignore
docs/source/conf.py
docs/source/favicon.ico
docs/source/icon-black.png
docs/source/icon-black.svg
docs/source/icon-white.svg
docs/source/icon.svg
docs/source/index.rst
docs/source/_static/.gitignore
docs/source/appendices/glossary.rst
docs/source/developers/documenting.rst
docs/source/developers/extensions.rst
docs/source/developers/index.rst
docs/source/developers/releasing.rst
docs/source/developers/testing.rst
docs/source/examples/hello_world.rst
docs/source/examples/hello_world_contexts.rst
docs/source/examples/hello_world_debugged.rst
docs/source/examples/index.rst
docs/source/examples/keyboard_input.rst
docs/source/examples/keyboard_input_async.rst
docs/source/includes/install-docs.txt
docs/source/includes/install-examples.txt
docs/source/includes/install-shm.txt
docs/source/includes/install-test.txt
docs/source/includes/install.txt
docs/source/introduction/concepts.rst
docs/source/introduction/history.rst
docs/source/introduction/installation.rst
docs/source/tutorials/buffers.rst
docs/source/tutorials/buses.rst
docs/source/tutorials/clocks.rst
docs/source/tutorials/contexts.rst
docs/source/tutorials/index.rst
docs/source/tutorials/nodes.rst
docs/source/tutorials/osc.rst
docs/source/tutorials/patterns.rst
docs/source/tutorials/scores.rst
docs/source/tutorials/servers.rst
docs/source/tutorials/synthdefs.rst
src/supriya/__init__.py
src/supriya/_version.py
src/supriya/clocks.py
src/supriya/conversions.py
src/supriya/enums.py
src/supriya/exceptions.py
src/supriya/io.py
src/supriya/osc.py
src/supriya/py.typed
src/supriya/sclang.py
src/supriya/scsynth.py
src/supriya/soundfiles.py
src/supriya/typing.py
src/supriya/utils.py
src/supriya.egg-info/PKG-INFO
src/supriya.egg-info/SOURCES.txt
src/supriya.egg-info/dependency_links.txt
src/supriya.egg-info/requires.txt
src/supriya.egg-info/top_level.txt
src/supriya/contexts/__init__.py
src/supriya/contexts/allocators.py
src/supriya/contexts/core.py
src/supriya/contexts/entities.py
src/supriya/contexts/nonrealtime.py
src/supriya/contexts/realtime.py
src/supriya/contexts/requests.py
src/supriya/contexts/responses.py
src/supriya/contexts/scopes.py
src/supriya/ext/__init__.py
src/supriya/ext/book.py
src/supriya/ext/ipython.py
src/supriya/ext/mypy.py
src/supriya/patterns/__init__.py
src/supriya/patterns/eventpatterns.py
src/supriya/patterns/events.py
src/supriya/patterns/noise.py
src/supriya/patterns/patterns.py
src/supriya/patterns/players.py
src/supriya/patterns/structure.py
src/supriya/samples/birds-01.wav
src/supriya/samples/birds-02.wav
src/supriya/samples/birds-03.wav
src/supriya/samples/birds-04.wav
src/supriya/samples/birds-05.wav
src/supriya/samples/birds-06.wav
src/supriya/samples/birds-07.wav
src/supriya/samples/birds-08.wav
src/supriya/samples/birds-09.wav
src/supriya/samples/pulse_44100sr_16bit_octo.wav
src/supriya/samples/sine_1320hz_44100sr_16bit_mono_1s.wav
src/supriya/samples/sine_1760hz_44100sr_16bit_mono_1s.wav
src/supriya/samples/sine_440hz_44100sr_16bit_mono.wav
src/supriya/samples/sine_440hz_44100sr_16bit_mono_1s.wav
src/supriya/samples/sine_440hz_44100sr_16bit_octo.wav
src/supriya/samples/sine_880hz_44100sr_16bit_mono_1s.wav
src/supriya/ugens/__init__.py
src/supriya/ugens/basic.py
src/supriya/ugens/beq.py
src/supriya/ugens/bufio.py
src/supriya/ugens/chaos.py
src/supriya/ugens/compilers.py
src/supriya/ugens/convolution.py
src/supriya/ugens/core.py
src/supriya/ugens/delay.py
src/supriya/ugens/demand.py
src/supriya/ugens/diskio.py
src/supriya/ugens/dynamics.py
src/supriya/ugens/envelopes.py
src/supriya/ugens/factories.py
src/supriya/ugens/ffsinosc.py
src/supriya/ugens/filters.py
src/supriya/ugens/gendyn.py
src/supriya/ugens/granular.py
src/supriya/ugens/hilbert.py
src/supriya/ugens/info.py
src/supriya/ugens/inout.py
src/supriya/ugens/lines.py
src/supriya/ugens/mac.py
src/supriya/ugens/ml.py
src/supriya/ugens/noise.py
src/supriya/ugens/osc.py
src/supriya/ugens/panning.py
src/supriya/ugens/physical.py
src/supriya/ugens/pv.py
src/supriya/ugens/reverb.py
src/supriya/ugens/safety.py
src/supriya/ugens/system.py
src/supriya/ugens/triggers.py
tests/.gitignore
tests/__init__.py
tests/conftest.py
tests/test_examples.py
tests/test_osc.py
tests/test_scsynth.py
tests/book/__init__.py
tests/book/conftest.py
tests/book/test_ext_book.py
tests/book/roots/test-book/conf.py
tests/book/roots/test-book/index.rst
tests/book/roots/test-book/_static/.gitignore
tests/clocks/__init__.py
tests/clocks/test_AsyncClock.py
tests/clocks/test_AsyncOfflineClock.py
tests/clocks/test_Clock.py
tests/clocks/test_OfflineClock.py
tests/contexts/__init__.py
tests/contexts/conftest.py
tests/contexts/test_Scope.py
tests/contexts/test_Score_buffers.py
tests/contexts/test_Score_buses.py
tests/contexts/test_Score_nodes.py
tests/contexts/test_Score_render.py
tests/contexts/test_Score_synthdefs.py
tests/contexts/test_ServerSHM.py
tests/contexts/test_Server_buffers.py
tests/contexts/test_Server_buses.py
tests/contexts/test_Server_lifecycle.py
tests/contexts/test_Server_misc.py
tests/contexts/test_Server_nodes.py
tests/contexts/test_Server_synthdefs.py
tests/contexts/test_allocators.py
tests/contexts/test_responses.py
tests/patterns/__init__.py
tests/patterns/conftest.py
tests/patterns/test_BinaryOpPattern.py
tests/patterns/test_BusAllocateEvent.py
tests/patterns/test_BusFreeEvent.py
tests/patterns/test_BusPattern.py
tests/patterns/test_ChainPattern.py
tests/patterns/test_ChoicePattern.py
tests/patterns/test_CompositeEvent.py
tests/patterns/test_Event.py
tests/patterns/test_EventPattern.py
tests/patterns/test_FxPattern.py
tests/patterns/test_GroupAllocateEvent.py
tests/patterns/test_GroupPattern.py
tests/patterns/test_MonoEventPattern.py
tests/patterns/test_NodeFreeEvent.py
tests/patterns/test_NoteEvent.py
tests/patterns/test_NullEvent.py
tests/patterns/test_ParallelPattern.py
tests/patterns/test_Pattern.py
tests/patterns/test_PatternPlayer.py
tests/patterns/test_RandomPattern.py
tests/patterns/test_SeedPattern.py
tests/patterns/test_SequencePattern.py
tests/patterns/test_ShufflePattern.py
tests/patterns/test_SynthAllocateEvent.py
tests/patterns/test_UnaryOpPattern.py
tests/patterns/test_UpdatePattern.py
tests/ugens/__init__.py
tests/ugens/test_Envelope.py
tests/ugens/test_MulAdd.py
tests/ugens/test_Sum3.py
tests/ugens/test_Sum4.py
tests/ugens/test_SynthDefFactory.py
tests/ugens/test_SynthDef___graph__.py
tests/ugens/test_SynthDef___str__.py
tests/ugens/test_SynthDef_ambisonics.py
tests/ugens/test_SynthDef_basic.py
tests/ugens/test_SynthDef_decompile.py
tests/ugens/test_SynthDef_demand.py
tests/ugens/test_SynthDef_expansion.py
tests/ugens/test_SynthDef_mfcc.py
tests/ugens/test_SynthDef_optimization.py
tests/ugens/test_SynthDef_parameters.py
tests/ugens/test_SynthDef_rngs.py
tests/ugens/test_SynthDef_shared.py
tests/ugens/test_SynthDef_splay.py
tests/ugens/test_SynthDef_system.py
tests/ugens/test_SynthDef_width_first.py