Skip to main content

A Python API for SuperCollider

Project description

Supriya

Supriya is a Python API for SuperCollider.

Supriya lets you:

Quickstart

1. Get Supriya

Install from PyPI:

pip install supriya

Or from source:

git clone https://github.com/supriya-project/supriya.git
cd supriya
pip install -e .

2. Get SuperCollider

Get SuperCollider from http://supercollider.github.io/.

3. Boot the server

Start your Python interpreter and import Supriya:

>>> import supriya

Boot the SuperCollider server:

>>> server = supriya.Server().boot()

4. Build a SynthDef

Import some classes:

>>> from supriya import Envelope, synthdef
>>> from supriya.ugens import EnvGen, Out, SinOsc

Make a synthesizer definition:

>>> @synthdef()
... def simple_sine(frequency=440, amplitude=0.1, gate=1):
...     sine = SinOsc.ar(frequency=frequency) * amplitude
...     envelope = EnvGen.kr(envelope=Envelope.adsr(), gate=gate, done_action=2)
...     Out.ar(bus=0, source=[sine * envelope] * 2)
...

Visualize the SynthDef (requires Graphviz):

>>> supriya.graph(simple_sine)

Allocate it on the server:

>>> _ = server.add_synthdefs(simple_sine)

... and then sync the server before proceeding to ensure the SynthDef has been fully parsed by scsynth:

>>> _ = server.sync()

5. Create some nodes

Create and allocate a group:

>>> group = server.add_group()

Create some synthesizers with the previously defined synthesizer definition, and allocate them on the server as a child of the previously created group:

>>> for i in range(3):
...     _ = group.add_synth(simple_sine, frequency=111 * (i + 1))
...

Query the server's node tree:

>>> print(server.query_tree())
NODE TREE 0 group
    1 group
        1000 group
            1003 simple_sine
                amplitude: 0.1, frequency: 333.0, gate: 1.0
            1002 simple_sine
                amplitude: 0.1, frequency: 222.0, gate: 1.0
            1001 simple_sine
                amplitude: 0.1, frequency: 111.0, gate: 1.0

6. Release and quit

Release the synths:

>>> for synth in group.children[:]:
...     synth.free()
...

Quit the server:

>>> server.quit()

License

This library is made available under the terms of the MIT license.

Project details


Release history Release notifications | RSS feed

Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distribution

supriya-25.7b1.tar.gz (4.5 MB view details)

Uploaded Source

Built Distributions

supriya-25.7b1-cp312-cp312-win_amd64.whl (1.3 MB view details)

Uploaded CPython 3.12Windows x86-64

supriya-25.7b1-cp312-cp312-win32.whl (1.3 MB view details)

Uploaded CPython 3.12Windows x86

supriya-25.7b1-cp312-cp312-musllinux_1_1_x86_64.whl (3.0 MB view details)

Uploaded CPython 3.12musllinux: musl 1.1+ x86-64

supriya-25.7b1-cp312-cp312-musllinux_1_1_i686.whl (3.0 MB view details)

Uploaded CPython 3.12musllinux: musl 1.1+ i686

supriya-25.7b1-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (2.4 MB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ x86-64

supriya-25.7b1-cp312-cp312-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl (2.4 MB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ i686manylinux: glibc 2.5+ i686

supriya-25.7b1-cp312-cp312-macosx_11_0_arm64.whl (1.3 MB view details)

Uploaded CPython 3.12macOS 11.0+ ARM64

supriya-25.7b1-cp311-cp311-win_amd64.whl (1.3 MB view details)

Uploaded CPython 3.11Windows x86-64

supriya-25.7b1-cp311-cp311-win32.whl (1.3 MB view details)

Uploaded CPython 3.11Windows x86

supriya-25.7b1-cp311-cp311-musllinux_1_1_x86_64.whl (3.0 MB view details)

Uploaded CPython 3.11musllinux: musl 1.1+ x86-64

supriya-25.7b1-cp311-cp311-musllinux_1_1_i686.whl (3.0 MB view details)

Uploaded CPython 3.11musllinux: musl 1.1+ i686

supriya-25.7b1-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (2.4 MB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ x86-64

supriya-25.7b1-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl (2.4 MB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ i686manylinux: glibc 2.5+ i686

supriya-25.7b1-cp311-cp311-macosx_11_0_arm64.whl (1.3 MB view details)

Uploaded CPython 3.11macOS 11.0+ ARM64

supriya-25.7b1-cp310-cp310-win_amd64.whl (1.3 MB view details)

Uploaded CPython 3.10Windows x86-64

supriya-25.7b1-cp310-cp310-win32.whl (1.3 MB view details)

Uploaded CPython 3.10Windows x86

supriya-25.7b1-cp310-cp310-musllinux_1_1_x86_64.whl (3.0 MB view details)

Uploaded CPython 3.10musllinux: musl 1.1+ x86-64

supriya-25.7b1-cp310-cp310-musllinux_1_1_i686.whl (3.0 MB view details)

Uploaded CPython 3.10musllinux: musl 1.1+ i686

supriya-25.7b1-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (2.4 MB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ x86-64

supriya-25.7b1-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl (2.4 MB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ i686manylinux: glibc 2.5+ i686

supriya-25.7b1-cp310-cp310-macosx_11_0_arm64.whl (1.3 MB view details)

Uploaded CPython 3.10macOS 11.0+ ARM64

File details

Details for the file supriya-25.7b1.tar.gz.

File metadata

  • Download URL: supriya-25.7b1.tar.gz
  • Upload date:
  • Size: 4.5 MB
  • Tags: Source
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.12.9

File hashes

Hashes for supriya-25.7b1.tar.gz
Algorithm Hash digest
SHA256 b5211023d124095b1e9b780bc7a0ea6aa72a768f3d00a677b63a2ad496af422e
MD5 b7ac9191285a1be3d47f8f5557968954
BLAKE2b-256 2430acd812dbcc5156c8bd96af0ca9125cad8f5c02b3aa1bc4bea4f26638c6bc

See more details on using hashes here.

Provenance

The following attestation bundles were made for supriya-25.7b1.tar.gz:

Publisher: publish.yml on supriya-project/supriya

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file supriya-25.7b1-cp312-cp312-win_amd64.whl.

File metadata

  • Download URL: supriya-25.7b1-cp312-cp312-win_amd64.whl
  • Upload date:
  • Size: 1.3 MB
  • Tags: CPython 3.12, Windows x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.12.9

File hashes

Hashes for supriya-25.7b1-cp312-cp312-win_amd64.whl
Algorithm Hash digest
SHA256 c35d3c0b87cdbbf536e2f113873c2a912d455aad016d86a758f67cbac3b896d8
MD5 5c56c93e96e2c6b5a78e9efe82f83551
BLAKE2b-256 4f0d777aa96c4c0afe3ae73793cd631791117c6de157f2813ac83fff3c6ff51e

See more details on using hashes here.

Provenance

The following attestation bundles were made for supriya-25.7b1-cp312-cp312-win_amd64.whl:

Publisher: publish.yml on supriya-project/supriya

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file supriya-25.7b1-cp312-cp312-win32.whl.

File metadata

  • Download URL: supriya-25.7b1-cp312-cp312-win32.whl
  • Upload date:
  • Size: 1.3 MB
  • Tags: CPython 3.12, Windows x86
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.12.9

File hashes

Hashes for supriya-25.7b1-cp312-cp312-win32.whl
Algorithm Hash digest
SHA256 47e3f5d03f538c046cad3211fa80a4a14be3853a0c52d94e7153d508898eb3c6
MD5 c8c616e53144d3bebe25e9338741bd8f
BLAKE2b-256 f0e38740ac53739824c7d940ab6379d58c82b1988f0bc13c6540c805c55b2afe

See more details on using hashes here.

Provenance

The following attestation bundles were made for supriya-25.7b1-cp312-cp312-win32.whl:

Publisher: publish.yml on supriya-project/supriya

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file supriya-25.7b1-cp312-cp312-musllinux_1_1_x86_64.whl.

File metadata

File hashes

Hashes for supriya-25.7b1-cp312-cp312-musllinux_1_1_x86_64.whl
Algorithm Hash digest
SHA256 1d19db08531fe801d060062abcb2a0fc92e414656c73663dfcd1f63d16bbbc89
MD5 d2396430d727f32ac22bf8764f5a1bbe
BLAKE2b-256 6bfd122d99b31c8047b42476474d03b95074f43511f40ed38602dda5c1843ab6

See more details on using hashes here.

Provenance

The following attestation bundles were made for supriya-25.7b1-cp312-cp312-musllinux_1_1_x86_64.whl:

Publisher: publish.yml on supriya-project/supriya

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file supriya-25.7b1-cp312-cp312-musllinux_1_1_i686.whl.

File metadata

File hashes

Hashes for supriya-25.7b1-cp312-cp312-musllinux_1_1_i686.whl
Algorithm Hash digest
SHA256 ee5c3e681fd131a96aab3fb50370c1a4ae919348fd36c07ae1ca585aaa59c7bd
MD5 f633408ae71e6aa62c0e769758d45f33
BLAKE2b-256 cb701fc28270a7b9da5862ce7d1dcbc70ae4c3a3b84a2d5f23a96e0fc0a95f96

See more details on using hashes here.

Provenance

The following attestation bundles were made for supriya-25.7b1-cp312-cp312-musllinux_1_1_i686.whl:

Publisher: publish.yml on supriya-project/supriya

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file supriya-25.7b1-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for supriya-25.7b1-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 1c524fde01258aeb0536b12b62cbce0704a93c83fa24e807c3709dbdcfe3c5b2
MD5 bd59a43dcb81e281a5d6260468f4552f
BLAKE2b-256 4c41ca9e6ad96cc2a35b5e9c50e3b671fe980008737638df5ee4e9cb2d1de83e

See more details on using hashes here.

Provenance

The following attestation bundles were made for supriya-25.7b1-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl:

Publisher: publish.yml on supriya-project/supriya

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file supriya-25.7b1-cp312-cp312-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl.

File metadata

File hashes

Hashes for supriya-25.7b1-cp312-cp312-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 7925cb1591a6f2736386c049b60f36fa21a7b52182efd106410deffa1979ebe6
MD5 53818cc750dcff47b907542a9c90f75b
BLAKE2b-256 262fac248c8e2e957aa67de470e09a4ca00f9b86d786558d05a57df306896a6f

See more details on using hashes here.

Provenance

The following attestation bundles were made for supriya-25.7b1-cp312-cp312-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl:

Publisher: publish.yml on supriya-project/supriya

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file supriya-25.7b1-cp312-cp312-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for supriya-25.7b1-cp312-cp312-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 90694687c708c8df4146166cb8e706ddf1bf3beb9cf25ac1f15f76fe76bf4f45
MD5 ff7a67129e704796bf144a33bf6056f3
BLAKE2b-256 7959b95bc3aecce4bcd670d9a83a258a02ebd3c9d16945e3276769e2f9d2aff8

See more details on using hashes here.

Provenance

The following attestation bundles were made for supriya-25.7b1-cp312-cp312-macosx_11_0_arm64.whl:

Publisher: publish.yml on supriya-project/supriya

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file supriya-25.7b1-cp311-cp311-win_amd64.whl.

File metadata

  • Download URL: supriya-25.7b1-cp311-cp311-win_amd64.whl
  • Upload date:
  • Size: 1.3 MB
  • Tags: CPython 3.11, Windows x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.12.9

File hashes

Hashes for supriya-25.7b1-cp311-cp311-win_amd64.whl
Algorithm Hash digest
SHA256 062b87fe05d257868b44b0707b5af8df14ae55502f6db9cb097cf01b1a55eb82
MD5 39711afdf940673bea437f8d84f3c55e
BLAKE2b-256 3dafe51ab9f0f852b7d91dbe070727ae8e0c0a3a2e17ea19ac6b3e2021f0a589

See more details on using hashes here.

Provenance

The following attestation bundles were made for supriya-25.7b1-cp311-cp311-win_amd64.whl:

Publisher: publish.yml on supriya-project/supriya

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file supriya-25.7b1-cp311-cp311-win32.whl.

File metadata

  • Download URL: supriya-25.7b1-cp311-cp311-win32.whl
  • Upload date:
  • Size: 1.3 MB
  • Tags: CPython 3.11, Windows x86
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.12.9

File hashes

Hashes for supriya-25.7b1-cp311-cp311-win32.whl
Algorithm Hash digest
SHA256 11035d159869e2f4d003be17fb3e4fce703344dfeb0140f523ee79958a933e92
MD5 824012a095d61661262551cf8213a823
BLAKE2b-256 cf4b8dbb247946bd96c156c8bc2e56454c913e3494a49062f9b4c132bcd42660

See more details on using hashes here.

Provenance

The following attestation bundles were made for supriya-25.7b1-cp311-cp311-win32.whl:

Publisher: publish.yml on supriya-project/supriya

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file supriya-25.7b1-cp311-cp311-musllinux_1_1_x86_64.whl.

File metadata

File hashes

Hashes for supriya-25.7b1-cp311-cp311-musllinux_1_1_x86_64.whl
Algorithm Hash digest
SHA256 1481b27074a4a8111b59cccbfefe7ee0f428107fb16e5d446614b12896604373
MD5 fa6910383537db81d3e1d44dae389495
BLAKE2b-256 11e7b276ee9da7bd249462afb68f1532961442d5856ea5e73046f71eb234d4af

See more details on using hashes here.

Provenance

The following attestation bundles were made for supriya-25.7b1-cp311-cp311-musllinux_1_1_x86_64.whl:

Publisher: publish.yml on supriya-project/supriya

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file supriya-25.7b1-cp311-cp311-musllinux_1_1_i686.whl.

File metadata

File hashes

Hashes for supriya-25.7b1-cp311-cp311-musllinux_1_1_i686.whl
Algorithm Hash digest
SHA256 1644a37e1ad9c054e09294fe4807605cdeeb4f2e847717e7687e847bc66eaa70
MD5 7074e0e1b558e76b3d624a388fb8d807
BLAKE2b-256 89ffa35d1957bf984b166a89b594ea6c4dfb6d003192569b23e19ec6eb09d937

See more details on using hashes here.

Provenance

The following attestation bundles were made for supriya-25.7b1-cp311-cp311-musllinux_1_1_i686.whl:

Publisher: publish.yml on supriya-project/supriya

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file supriya-25.7b1-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for supriya-25.7b1-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 1d0d1fe06d82a6cbc744eec2f5430571297a56725f02e94f44e6bf71d1d04cda
MD5 b5025e23b6400717d5c89183a3baab41
BLAKE2b-256 1b6a4abc65af6eab9e3c18d56cb9e42fc231618da946ec2da5b69a83c28f8610

See more details on using hashes here.

Provenance

The following attestation bundles were made for supriya-25.7b1-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl:

Publisher: publish.yml on supriya-project/supriya

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file supriya-25.7b1-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl.

File metadata

File hashes

Hashes for supriya-25.7b1-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 e7c190a169a55d86fd47f0fed3ec5f4a7c0fb0b8cbee11e63cafac176db6460a
MD5 1df2343de7be253588cc7db1dcba666c
BLAKE2b-256 da9e864b4c29e595977156309073377bccf540d5feca80a078257f14c7fa3dd5

See more details on using hashes here.

Provenance

The following attestation bundles were made for supriya-25.7b1-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl:

Publisher: publish.yml on supriya-project/supriya

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file supriya-25.7b1-cp311-cp311-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for supriya-25.7b1-cp311-cp311-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 f682cb31a241d6f7b64fd5746beb5e4e02d7a510c9c83fba260090abd4d86345
MD5 6912b51043aef123bad4e83c56b913e8
BLAKE2b-256 16c30bd14c7b239e70d9f40016fa181adbe1e7c382c9feb6820688512c9ea2ec

See more details on using hashes here.

Provenance

The following attestation bundles were made for supriya-25.7b1-cp311-cp311-macosx_11_0_arm64.whl:

Publisher: publish.yml on supriya-project/supriya

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file supriya-25.7b1-cp310-cp310-win_amd64.whl.

File metadata

  • Download URL: supriya-25.7b1-cp310-cp310-win_amd64.whl
  • Upload date:
  • Size: 1.3 MB
  • Tags: CPython 3.10, Windows x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.12.9

File hashes

Hashes for supriya-25.7b1-cp310-cp310-win_amd64.whl
Algorithm Hash digest
SHA256 59b0dd3690f530cd4962a99112c28332f5ed2f704935dd00c18fccccb424d543
MD5 86a3df964386c29e81fe360fedac7d95
BLAKE2b-256 5a48fb541f593d33b69e3438d39ba085c2e05f1aaccefc0d6192f59ed67986af

See more details on using hashes here.

Provenance

The following attestation bundles were made for supriya-25.7b1-cp310-cp310-win_amd64.whl:

Publisher: publish.yml on supriya-project/supriya

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file supriya-25.7b1-cp310-cp310-win32.whl.

File metadata

  • Download URL: supriya-25.7b1-cp310-cp310-win32.whl
  • Upload date:
  • Size: 1.3 MB
  • Tags: CPython 3.10, Windows x86
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.12.9

File hashes

Hashes for supriya-25.7b1-cp310-cp310-win32.whl
Algorithm Hash digest
SHA256 09014025b9dda0c7974359c06d371b366ebcbc2a5317e9dc2c3ff3471f04a022
MD5 87959ec07f1e56b2ecfd12565cec68e8
BLAKE2b-256 4e271620adb9a9f323b1eaa7d1edb2585b0a410de5ed62565c8220b878a3e67f

See more details on using hashes here.

Provenance

The following attestation bundles were made for supriya-25.7b1-cp310-cp310-win32.whl:

Publisher: publish.yml on supriya-project/supriya

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file supriya-25.7b1-cp310-cp310-musllinux_1_1_x86_64.whl.

File metadata

File hashes

Hashes for supriya-25.7b1-cp310-cp310-musllinux_1_1_x86_64.whl
Algorithm Hash digest
SHA256 c31c378c283f3f98ddb5845c8ba0d9baa32c45d7c1cd2bb400f246149a078715
MD5 847dd595948de940c824d07657921b8f
BLAKE2b-256 1e9113d6d760bf53a3149ca9e2be3acb311ba888493e9dd7509961327bd3f630

See more details on using hashes here.

Provenance

The following attestation bundles were made for supriya-25.7b1-cp310-cp310-musllinux_1_1_x86_64.whl:

Publisher: publish.yml on supriya-project/supriya

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file supriya-25.7b1-cp310-cp310-musllinux_1_1_i686.whl.

File metadata

File hashes

Hashes for supriya-25.7b1-cp310-cp310-musllinux_1_1_i686.whl
Algorithm Hash digest
SHA256 cff7d31ba10e92bc2837f2b15ef238720796093ae1832a4da530ac34014807d7
MD5 0d7db48fe0708fa9d215e826cb2b887b
BLAKE2b-256 f395f608a9152e5e478a4915aa5c04a952f79a79d7b0c1fdf469714559111978

See more details on using hashes here.

Provenance

The following attestation bundles were made for supriya-25.7b1-cp310-cp310-musllinux_1_1_i686.whl:

Publisher: publish.yml on supriya-project/supriya

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file supriya-25.7b1-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for supriya-25.7b1-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 2b965f05291aa0e3630d3ceffc135ff8cd60ed47fb6916518aba4cbfb462d464
MD5 c94b44e47b5485aff84a5322f4662ac8
BLAKE2b-256 41cc4d4f2ca78a08898b500922a4f508d047c34fe136bb56802a6238ffcf0312

See more details on using hashes here.

Provenance

The following attestation bundles were made for supriya-25.7b1-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl:

Publisher: publish.yml on supriya-project/supriya

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file supriya-25.7b1-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl.

File metadata

File hashes

Hashes for supriya-25.7b1-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 9b6ed40bc4fdc2aaf678194b44fdd597b861221323267c253c6b05f16473a651
MD5 5f5c8e82bb4d9ff54d738c6c4e77b943
BLAKE2b-256 4fad86fa15f8fe556a3ac9662613f82758acd45cb185f897384d07218bf2ae7e

See more details on using hashes here.

Provenance

The following attestation bundles were made for supriya-25.7b1-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl:

Publisher: publish.yml on supriya-project/supriya

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file supriya-25.7b1-cp310-cp310-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for supriya-25.7b1-cp310-cp310-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 bf0f4e825a693f67a752ece09c150ac706316c4398c27098ccb01555ef465054
MD5 57b27187fe311c6fdde4ac039f77d392
BLAKE2b-256 82fea1bbbdb093652a5b44ab5eafa90afe1c707404f6846d74a37d08b6622ad8

See more details on using hashes here.

Provenance

The following attestation bundles were made for supriya-25.7b1-cp310-cp310-macosx_11_0_arm64.whl:

Publisher: publish.yml on supriya-project/supriya

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

Supported by

AWS Cloud computing and Security Sponsor Datadog Monitoring Fastly CDN Google Download Analytics Pingdom Monitoring Sentry Error logging StatusPage Status page