{"id":28444717,"url":"https://github.com/ideoforms/python-supercollider","last_synced_at":"2025-06-29T18:31:27.069Z","repository":{"id":137707745,"uuid":"213043670","full_name":"ideoforms/python-supercollider","owner":"ideoforms","description":"Python client for the SuperCollider audio synthesis server","archived":false,"fork":false,"pushed_at":"2024-01-12T11:26:18.000Z","size":103,"stargazers_count":71,"open_issues_count":4,"forks_count":4,"subscribers_count":4,"default_branch":"master","last_synced_at":"2025-06-06T09:10:00.607Z","etag":null,"topics":[],"latest_commit_sha":null,"homepage":null,"language":"Python","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"mit","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/ideoforms.png","metadata":{"files":{"readme":"README.md","changelog":"CHANGELOG.md","contributing":"CONTRIBUTING.md","funding":null,"license":"LICENSE.md","code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":null,"governance":null,"roadmap":null,"authors":null}},"created_at":"2019-10-05T17:40:27.000Z","updated_at":"2025-05-10T01:32:00.000Z","dependencies_parsed_at":"2024-01-12T13:45:18.947Z","dependency_job_id":null,"html_url":"https://github.com/ideoforms/python-supercollider","commit_stats":null,"previous_names":[],"tags_count":6,"template":false,"template_full_name":null,"purl":"pkg:github/ideoforms/python-supercollider","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/ideoforms%2Fpython-supercollider","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/ideoforms%2Fpython-supercollider/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/ideoforms%2Fpython-supercollider/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/ideoforms%2Fpython-supercollider/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/ideoforms","download_url":"https://codeload.github.com/ideoforms/python-supercollider/tar.gz/refs/heads/master","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/ideoforms%2Fpython-supercollider/sbom","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":262646996,"owners_count":23342566,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2022-07-04T15:15:14.044Z","host_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub","repositories_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories","repository_names_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repository_names","owners_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners"}},"keywords":[],"created_at":"2025-06-06T09:10:00.351Z","updated_at":"2025-06-29T18:31:27.063Z","avatar_url":"https://github.com/ideoforms.png","language":"Python","funding_links":[],"categories":[],"sub_categories":[],"readme":"# Python client for SuperCollider\n\nA lightweight Python module to control the [SuperCollider](https://supercollider.github.io) audio synthesis engine.\n\n## Installation\n\nTo install the client library:\n\n```python\npip3 install supercollider\n```\n\n## Usage\n\nBefore using the library, start the SuperCollider server, either through the SuperCollider GUI or with `scsynth -u 57110`.\n\nWithin the SC client, create the below SynthDef:\n\n```\nSynthDef(\\sine, { |out = 0, freq = 440.0, gain = 0.0|\n    Out.ar(out, SinOsc.ar(freq) * gain.dbamp);\n}).store;\n```\n\nFrom Python, you can now create and trigger Synths:\n\n```python\nfrom supercollider import Server, Synth\n\nserver = Server()\n\nsynth = Synth(server, \"sine\", { \"freq\" : 440.0, \"gain\" : -12.0 })\nsynth.set(\"freq\", 880.0)\n```\n\nFor further examples, see [examples](https://github.com/ideoforms/python-supercollider/tree/master/examples).\n\n## License\n\nThis library is made available under the terms of the MIT license.\n\n## Contributors\n\n - Thanks to [Itaborala](https://github.com/Itaborala) for porting from liblo to python-osc\n\n## See also\n\n* If you want a more comprehensive framework that lets you construct and compile SynthDefs from Python, take a look at [Supriya](https://github.com/josiah-wolf-oberholtzer/supriya).\n* For an excellent Python + SuperCollider live coding environment, check out [FoxDot](https://foxdot.org)\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fideoforms%2Fpython-supercollider","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fideoforms%2Fpython-supercollider","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fideoforms%2Fpython-supercollider/lists"}