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.7b0.tar.gz (4.5 MB view details)

Uploaded Source

Built Distributions

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

Uploaded CPython 3.12Windows x86-64

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

Uploaded CPython 3.12Windows x86

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

Uploaded CPython 3.12musllinux: musl 1.1+ x86-64

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

Uploaded CPython 3.12musllinux: musl 1.1+ i686

supriya-25.7b0-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.7b0-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.7b0-cp312-cp312-macosx_11_0_arm64.whl (1.3 MB view details)

Uploaded CPython 3.12macOS 11.0+ ARM64

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

Uploaded CPython 3.11Windows x86-64

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

Uploaded CPython 3.11Windows x86

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

Uploaded CPython 3.11musllinux: musl 1.1+ x86-64

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

Uploaded CPython 3.11musllinux: musl 1.1+ i686

supriya-25.7b0-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.7b0-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.7b0-cp311-cp311-macosx_11_0_arm64.whl (1.3 MB view details)

Uploaded CPython 3.11macOS 11.0+ ARM64

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

Uploaded CPython 3.10Windows x86-64

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

Uploaded CPython 3.10Windows x86

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

Uploaded CPython 3.10musllinux: musl 1.1+ x86-64

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

Uploaded CPython 3.10musllinux: musl 1.1+ i686

supriya-25.7b0-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.7b0-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.7b0-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.7b0.tar.gz.

File metadata

  • Download URL: supriya-25.7b0.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.7b0.tar.gz
Algorithm Hash digest
SHA256 4d9f8f1c1cd6347253b73beeb479c6a201cc7c0626820c19b9f0fa31ff6497fc
MD5 0b52a789f646ba7b8a06173bfb247cc8
BLAKE2b-256 02885aa0f4756ab96ba79a283741ac68a49808ddefdba9c5ded945cbbbf92644

See more details on using hashes here.

Provenance

The following attestation bundles were made for supriya-25.7b0.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.7b0-cp312-cp312-win_amd64.whl.

File metadata

  • Download URL: supriya-25.7b0-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.7b0-cp312-cp312-win_amd64.whl
Algorithm Hash digest
SHA256 ca774fb7ba735c54429b04f444bc6e4965f68762001c35c13050dde326a7d00e
MD5 fae0145eab5ca2baaf8ba341161b2035
BLAKE2b-256 bdf034072015ef7b42aa0d1a3ff8fc6c16d78f34816a762b81e091ca3fe66b8a

See more details on using hashes here.

Provenance

The following attestation bundles were made for supriya-25.7b0-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.7b0-cp312-cp312-win32.whl.

File metadata

  • Download URL: supriya-25.7b0-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.7b0-cp312-cp312-win32.whl
Algorithm Hash digest
SHA256 6ea1de5756e5c79c2caf7dc1e7182d46288baa072aaf73492262162662e2c620
MD5 ac9cf3c501e87b1a36136696be86b095
BLAKE2b-256 344a50889efe7cd97c604634fff058263ab8e932d00d5697544e52fb2e1350dd

See more details on using hashes here.

Provenance

The following attestation bundles were made for supriya-25.7b0-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.7b0-cp312-cp312-musllinux_1_1_x86_64.whl.

File metadata

File hashes

Hashes for supriya-25.7b0-cp312-cp312-musllinux_1_1_x86_64.whl
Algorithm Hash digest
SHA256 9e47ced38348ba2741719a553be712cff7835a1ef2854b64695c594b508b0d79
MD5 f8c069afba959b1d69f1fbd546b51715
BLAKE2b-256 96b3d17e8056e99c34fc821a6621b4dda87664f6af01cb24d25cb0ebe53e8083

See more details on using hashes here.

Provenance

The following attestation bundles were made for supriya-25.7b0-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.7b0-cp312-cp312-musllinux_1_1_i686.whl.

File metadata

File hashes

Hashes for supriya-25.7b0-cp312-cp312-musllinux_1_1_i686.whl
Algorithm Hash digest
SHA256 16aa3fdf71c4dd6a1470e0f7638ebe73587304372d350a58990114fa834843a7
MD5 e4e6eaae1c6526d3dbb34506a402a963
BLAKE2b-256 fe04241177879a814bb64d1c428fc9c6bb6fe61b49cab0c6756387fa733e100e

See more details on using hashes here.

Provenance

The following attestation bundles were made for supriya-25.7b0-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.7b0-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for supriya-25.7b0-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 b97c1e88ce85838a9d6c846fe671196daf7f9a5ddbfd66ce1c7d94d1ddac0424
MD5 bbea18bfb1e5fef8a7430f92bce051ef
BLAKE2b-256 aa693b5b88a90ace3881ee8dedc2ae3221e63f3fa6a4541d0961add78998d456

See more details on using hashes here.

Provenance

The following attestation bundles were made for supriya-25.7b0-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.7b0-cp312-cp312-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl.

File metadata

File hashes

Hashes for supriya-25.7b0-cp312-cp312-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 4d715ddd30e5a205a03e3e638e883f0cd088079ecba6c230e7e6072cd2b90b0f
MD5 791a16f4cc9f404aef51592f2c036f65
BLAKE2b-256 ae97a1ed7114ed1adb1585539b882e85f31089e3ec08df1a52d8848ccee1bec8

See more details on using hashes here.

Provenance

The following attestation bundles were made for supriya-25.7b0-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.7b0-cp312-cp312-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for supriya-25.7b0-cp312-cp312-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 4ff7adcf3b19463726b6bb0be858a0b4a36bc8cd0af622244d915838d50efc6e
MD5 aecfea7c6077b4d14f1f9200161e2cee
BLAKE2b-256 1dd6110318d420951325cd01e92da969f23c4e6fd89a517dfb6d59a1faa794b2

See more details on using hashes here.

Provenance

The following attestation bundles were made for supriya-25.7b0-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.7b0-cp311-cp311-win_amd64.whl.

File metadata

  • Download URL: supriya-25.7b0-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.7b0-cp311-cp311-win_amd64.whl
Algorithm Hash digest
SHA256 afa54a4d1188efd77a95976af267d386362958c1ce5cd35f9b0e76268a3c8777
MD5 0433de6993d17a68919f1682df1b480a
BLAKE2b-256 2b39be0e9bd2b04cf929ba6d66681a012d89505242736624a42283a2f47c17b0

See more details on using hashes here.

Provenance

The following attestation bundles were made for supriya-25.7b0-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.7b0-cp311-cp311-win32.whl.

File metadata

  • Download URL: supriya-25.7b0-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.7b0-cp311-cp311-win32.whl
Algorithm Hash digest
SHA256 79fa27ad806fe8763d8e07043b5116c327bc8c92f7fe7b791f9f81c970c46359
MD5 db73d10dd4be0080ecf00f346957a3f4
BLAKE2b-256 0e9fa315879707c34e71477f597c11577632d456ac6ac4dd8230a3cc4bbda085

See more details on using hashes here.

Provenance

The following attestation bundles were made for supriya-25.7b0-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.7b0-cp311-cp311-musllinux_1_1_x86_64.whl.

File metadata

File hashes

Hashes for supriya-25.7b0-cp311-cp311-musllinux_1_1_x86_64.whl
Algorithm Hash digest
SHA256 8b5ba753ecab4fa4ad473a7f658511acc109bea00de3c18514bc64eb085f43e2
MD5 f48c163024ab5da66b8a86a999eaf818
BLAKE2b-256 1cc3a69c78aba4b42a7b33d7008d844a62e05dfcda48a44b4c333c8dd96143b7

See more details on using hashes here.

Provenance

The following attestation bundles were made for supriya-25.7b0-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.7b0-cp311-cp311-musllinux_1_1_i686.whl.

File metadata

File hashes

Hashes for supriya-25.7b0-cp311-cp311-musllinux_1_1_i686.whl
Algorithm Hash digest
SHA256 6c4069fd5cdc110ec7acd66dd46283d37c87b0ec4ae2c41a5f7b3ea8bd3fbc8f
MD5 51c8bd797f2297935b2e1eaa1ca5bf18
BLAKE2b-256 bcabe254e407be1a45d66c9c5b07d88c3c40e1547901f4d54b736f2f956a8523

See more details on using hashes here.

Provenance

The following attestation bundles were made for supriya-25.7b0-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.7b0-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for supriya-25.7b0-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 bdd33e57c4a507517c2a8de5f065708a82329063ceda51faf7987aa7d3c39d18
MD5 ee0c84c281b765701c898076a4ec7f8c
BLAKE2b-256 5113dcc2629eb74d19a9c577eb671fcae76504cb599caf86e90e928e58d7af85

See more details on using hashes here.

Provenance

The following attestation bundles were made for supriya-25.7b0-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.7b0-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl.

File metadata

File hashes

Hashes for supriya-25.7b0-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 4a13e6d5d1f54ea916bdc89e42a103c3592ed6e3f62192d7d9fca10658ade162
MD5 d47ccbf6e7a6f7bfe3e57a2dadb6cad7
BLAKE2b-256 5262f5916a71e42d88753c001d6deb1709986dfd5ae4b92ea60782f6cc2759c3

See more details on using hashes here.

Provenance

The following attestation bundles were made for supriya-25.7b0-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.7b0-cp311-cp311-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for supriya-25.7b0-cp311-cp311-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 0246f217da2281fd905f5db69e6d8854b46107f0370f6f2a5730e1330c3880e6
MD5 4736bf5b71d9e22f7e0d20a78d7c70f6
BLAKE2b-256 89ef09958ffa4d28c18b436966d89416ad96e37d878ae70f92baad72fee640f7

See more details on using hashes here.

Provenance

The following attestation bundles were made for supriya-25.7b0-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.7b0-cp310-cp310-win_amd64.whl.

File metadata

  • Download URL: supriya-25.7b0-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.7b0-cp310-cp310-win_amd64.whl
Algorithm Hash digest
SHA256 2fca37884bccb1cb6133ab436c9b96fce68d87275ef58d371c12da5185e5704c
MD5 c0f16ae638a4add735c27f6a303243eb
BLAKE2b-256 352d89ee08e3690abce68e16ee1f296b39d534aa064ca0d6744046f3591b2a28

See more details on using hashes here.

Provenance

The following attestation bundles were made for supriya-25.7b0-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.7b0-cp310-cp310-win32.whl.

File metadata

  • Download URL: supriya-25.7b0-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.7b0-cp310-cp310-win32.whl
Algorithm Hash digest
SHA256 43c90664b00d2fb23ad8bc7e373b893085fad1c2d804084250c42449c74245bd
MD5 0f4db7cb3a1288cbd1b7ab7d6616df6a
BLAKE2b-256 b089c828363767ef29be407db63d072b58ca2bb71120976b920452ceae07a4bf

See more details on using hashes here.

Provenance

The following attestation bundles were made for supriya-25.7b0-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.7b0-cp310-cp310-musllinux_1_1_x86_64.whl.

File metadata

File hashes

Hashes for supriya-25.7b0-cp310-cp310-musllinux_1_1_x86_64.whl
Algorithm Hash digest
SHA256 b77808cdf3c05b0a164850a943c37fba021c2b6e300ff3dc0bb71a713a367da7
MD5 ea03e4d99a9e60d8a22112110d1c1dbf
BLAKE2b-256 0dcca79eeebcacbf00d7f9166ffa4f8346fa5d7f541864e8912baa6e6fe57cc7

See more details on using hashes here.

Provenance

The following attestation bundles were made for supriya-25.7b0-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.7b0-cp310-cp310-musllinux_1_1_i686.whl.

File metadata

File hashes

Hashes for supriya-25.7b0-cp310-cp310-musllinux_1_1_i686.whl
Algorithm Hash digest
SHA256 24d6938b200466d25918190c346d368c089272b382bf52ff53f8cc03b089092f
MD5 ac617e561f8e8901b7526fb7aed7f3f8
BLAKE2b-256 b4c592edc8a2f2fc504a5645ac6c238c5642bdbfd8f53d3d95a17caba7a31964

See more details on using hashes here.

Provenance

The following attestation bundles were made for supriya-25.7b0-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.7b0-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for supriya-25.7b0-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 d9bde43800b5ee78e39f6020462fb9ca25f1651fa449281788eca3b19db3c911
MD5 dcd15c1eaa72caf255e4f96ddfcba364
BLAKE2b-256 be031550eea2a3dcaad0dd1be71163104ea80c37c74d77c89f258e2c1baed070

See more details on using hashes here.

Provenance

The following attestation bundles were made for supriya-25.7b0-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.7b0-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl.

File metadata

File hashes

Hashes for supriya-25.7b0-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 be8fde78fb6708a41e39a190bdc68fc36bbae471441d8ae348ddd55c510eaac3
MD5 a2acdda00bcfbd514076a72ba12d22ff
BLAKE2b-256 aa2b3bbc5d8f380dd6519dca0f5672f85473bcfef79dce482c1e8ab6dfd61264

See more details on using hashes here.

Provenance

The following attestation bundles were made for supriya-25.7b0-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.7b0-cp310-cp310-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for supriya-25.7b0-cp310-cp310-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 beec5967d7cdfba47d25df8119bc35dc01bad3ed9a081dabd402394a33e9b412
MD5 7c8eb3ba5f725a7332bc1eb65c8be197
BLAKE2b-256 98bb48d2038647f5251ff68b0e8c29d0a072f575338bfbc3111f990852edb53a

See more details on using hashes here.

Provenance

The following attestation bundles were made for supriya-25.7b0-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