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-26.2b1.tar.gz (5.3 MB view details)

Uploaded Source

Built Distributions

If you're not sure about the file name format, learn more about wheel file names.

supriya-26.2b1-cp314-cp314-win_arm64.whl (1.1 MB view details)

Uploaded CPython 3.14Windows ARM64

supriya-26.2b1-cp314-cp314-win_amd64.whl (1.1 MB view details)

Uploaded CPython 3.14Windows x86-64

supriya-26.2b1-cp314-cp314-musllinux_1_2_x86_64.whl (2.8 MB view details)

Uploaded CPython 3.14musllinux: musl 1.2+ x86-64

supriya-26.2b1-cp314-cp314-musllinux_1_2_aarch64.whl (2.7 MB view details)

Uploaded CPython 3.14musllinux: musl 1.2+ ARM64

supriya-26.2b1-cp314-cp314-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl (1.8 MB view details)

Uploaded CPython 3.14manylinux: glibc 2.24+ x86-64manylinux: glibc 2.28+ x86-64

supriya-26.2b1-cp314-cp314-manylinux_2_24_aarch64.manylinux_2_28_aarch64.whl (1.7 MB view details)

Uploaded CPython 3.14manylinux: glibc 2.24+ ARM64manylinux: glibc 2.28+ ARM64

supriya-26.2b1-cp314-cp314-macosx_11_0_arm64.whl (1.1 MB view details)

Uploaded CPython 3.14macOS 11.0+ ARM64

supriya-26.2b1-cp314-cp314-macosx_10_15_x86_64.whl (1.1 MB view details)

Uploaded CPython 3.14macOS 10.15+ x86-64

supriya-26.2b1-cp313-cp313-win_arm64.whl (1.1 MB view details)

Uploaded CPython 3.13Windows ARM64

supriya-26.2b1-cp313-cp313-win_amd64.whl (1.1 MB view details)

Uploaded CPython 3.13Windows x86-64

supriya-26.2b1-cp313-cp313-musllinux_1_2_x86_64.whl (2.8 MB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ x86-64

supriya-26.2b1-cp313-cp313-musllinux_1_2_aarch64.whl (2.7 MB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ ARM64

supriya-26.2b1-cp313-cp313-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl (1.8 MB view details)

Uploaded CPython 3.13manylinux: glibc 2.24+ x86-64manylinux: glibc 2.28+ x86-64

supriya-26.2b1-cp313-cp313-manylinux_2_24_aarch64.manylinux_2_28_aarch64.whl (1.7 MB view details)

Uploaded CPython 3.13manylinux: glibc 2.24+ ARM64manylinux: glibc 2.28+ ARM64

supriya-26.2b1-cp313-cp313-macosx_11_0_arm64.whl (1.1 MB view details)

Uploaded CPython 3.13macOS 11.0+ ARM64

supriya-26.2b1-cp313-cp313-macosx_10_13_x86_64.whl (1.1 MB view details)

Uploaded CPython 3.13macOS 10.13+ x86-64

supriya-26.2b1-cp312-cp312-win_arm64.whl (1.1 MB view details)

Uploaded CPython 3.12Windows ARM64

supriya-26.2b1-cp312-cp312-win_amd64.whl (1.1 MB view details)

Uploaded CPython 3.12Windows x86-64

supriya-26.2b1-cp312-cp312-musllinux_1_2_x86_64.whl (2.8 MB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ x86-64

supriya-26.2b1-cp312-cp312-musllinux_1_2_aarch64.whl (2.7 MB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ ARM64

supriya-26.2b1-cp312-cp312-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl (1.8 MB view details)

Uploaded CPython 3.12manylinux: glibc 2.24+ x86-64manylinux: glibc 2.28+ x86-64

supriya-26.2b1-cp312-cp312-manylinux_2_24_aarch64.manylinux_2_28_aarch64.whl (1.7 MB view details)

Uploaded CPython 3.12manylinux: glibc 2.24+ ARM64manylinux: glibc 2.28+ ARM64

supriya-26.2b1-cp312-cp312-macosx_11_0_arm64.whl (1.1 MB view details)

Uploaded CPython 3.12macOS 11.0+ ARM64

supriya-26.2b1-cp312-cp312-macosx_10_13_x86_64.whl (1.1 MB view details)

Uploaded CPython 3.12macOS 10.13+ x86-64

supriya-26.2b1-cp311-cp311-win_arm64.whl (1.1 MB view details)

Uploaded CPython 3.11Windows ARM64

supriya-26.2b1-cp311-cp311-win_amd64.whl (1.1 MB view details)

Uploaded CPython 3.11Windows x86-64

supriya-26.2b1-cp311-cp311-musllinux_1_2_x86_64.whl (2.8 MB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ x86-64

supriya-26.2b1-cp311-cp311-musllinux_1_2_aarch64.whl (2.7 MB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ ARM64

supriya-26.2b1-cp311-cp311-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl (1.8 MB view details)

Uploaded CPython 3.11manylinux: glibc 2.24+ x86-64manylinux: glibc 2.28+ x86-64

supriya-26.2b1-cp311-cp311-manylinux_2_24_aarch64.manylinux_2_28_aarch64.whl (1.7 MB view details)

Uploaded CPython 3.11manylinux: glibc 2.24+ ARM64manylinux: glibc 2.28+ ARM64

supriya-26.2b1-cp311-cp311-macosx_11_0_arm64.whl (1.1 MB view details)

Uploaded CPython 3.11macOS 11.0+ ARM64

supriya-26.2b1-cp311-cp311-macosx_10_9_x86_64.whl (1.1 MB view details)

Uploaded CPython 3.11macOS 10.9+ x86-64

supriya-26.2b1-cp310-cp310-win_arm64.whl (1.1 MB view details)

Uploaded CPython 3.10Windows ARM64

supriya-26.2b1-cp310-cp310-win_amd64.whl (1.1 MB view details)

Uploaded CPython 3.10Windows x86-64

supriya-26.2b1-cp310-cp310-musllinux_1_2_x86_64.whl (2.8 MB view details)

Uploaded CPython 3.10musllinux: musl 1.2+ x86-64

supriya-26.2b1-cp310-cp310-musllinux_1_2_aarch64.whl (2.7 MB view details)

Uploaded CPython 3.10musllinux: musl 1.2+ ARM64

supriya-26.2b1-cp310-cp310-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl (1.8 MB view details)

Uploaded CPython 3.10manylinux: glibc 2.24+ x86-64manylinux: glibc 2.28+ x86-64

supriya-26.2b1-cp310-cp310-manylinux_2_24_aarch64.manylinux_2_28_aarch64.whl (1.7 MB view details)

Uploaded CPython 3.10manylinux: glibc 2.24+ ARM64manylinux: glibc 2.28+ ARM64

supriya-26.2b1-cp310-cp310-macosx_11_0_arm64.whl (1.1 MB view details)

Uploaded CPython 3.10macOS 11.0+ ARM64

supriya-26.2b1-cp310-cp310-macosx_10_9_x86_64.whl (1.1 MB view details)

Uploaded CPython 3.10macOS 10.9+ x86-64

File details

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

File metadata

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

File hashes

Hashes for supriya-26.2b1.tar.gz
Algorithm Hash digest
SHA256 b7a8ac67ff00ec97f00baa29a9ab028063db95bdf9d464e5c01fa3c2dda4eb31
MD5 cdb2e42528bc03da14b26fc2c3b77c23
BLAKE2b-256 fffe25c4f359aa4e4e4ae5b591cab4c7adefdfaee7b34e7070d02af63d97fe59

See more details on using hashes here.

Provenance

The following attestation bundles were made for supriya-26.2b1.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-26.2b1-cp314-cp314-win_arm64.whl.

File metadata

  • Download URL: supriya-26.2b1-cp314-cp314-win_arm64.whl
  • Upload date:
  • Size: 1.1 MB
  • Tags: CPython 3.14, Windows ARM64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.7

File hashes

Hashes for supriya-26.2b1-cp314-cp314-win_arm64.whl
Algorithm Hash digest
SHA256 236f1ab5f6171463213c52d607b05114c97f66b18df0240ce56eff447de2ecb1
MD5 0a47fe740d72cd134d6831dcef64ca97
BLAKE2b-256 6f0bde78032efc042fa7ef200949d3c48aedcb1e26e5114bebb20faa4e3842e0

See more details on using hashes here.

Provenance

The following attestation bundles were made for supriya-26.2b1-cp314-cp314-win_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-26.2b1-cp314-cp314-win_amd64.whl.

File metadata

  • Download URL: supriya-26.2b1-cp314-cp314-win_amd64.whl
  • Upload date:
  • Size: 1.1 MB
  • Tags: CPython 3.14, Windows x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.7

File hashes

Hashes for supriya-26.2b1-cp314-cp314-win_amd64.whl
Algorithm Hash digest
SHA256 9ec36ba352ecb82e23655797cde61f339057aef8279dcdcd789cdc63575ccb3f
MD5 2a3068a8ed7723d82088ec5c55f600e0
BLAKE2b-256 3f7950484b71e12ba28462b76cb588d0caa8e882bec771327e8a6287772327b6

See more details on using hashes here.

Provenance

The following attestation bundles were made for supriya-26.2b1-cp314-cp314-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-26.2b1-cp314-cp314-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for supriya-26.2b1-cp314-cp314-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 f3e6c329e8a8caac3c8e6dd8037e7e4d0bff1d8d0d19838ca73245b377c9b166
MD5 a323f51b7a226cb5a79c59b129688eb3
BLAKE2b-256 dd2cc2f44cbf5fc5f028e3bfe9827ca1594c9ae3694488aa9b9359f9e1701c66

See more details on using hashes here.

Provenance

The following attestation bundles were made for supriya-26.2b1-cp314-cp314-musllinux_1_2_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-26.2b1-cp314-cp314-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for supriya-26.2b1-cp314-cp314-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 31d9600b947db86324400a13f029c54ea6637eaba79f48b1af34cd394b4681ec
MD5 71a7bb4f033f3281d9568ab61d66104a
BLAKE2b-256 12fd4990e2e003dc2d441792b99b57951fa33d7553dbb1e28a9805bf958af171

See more details on using hashes here.

Provenance

The following attestation bundles were made for supriya-26.2b1-cp314-cp314-musllinux_1_2_aarch64.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-26.2b1-cp314-cp314-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for supriya-26.2b1-cp314-cp314-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 b3630ded8ec70dbf4347f48db84baf752ad95fb844ebf8f817caf432103bc433
MD5 218b1d7b2d533cb9d1c5f27f6ae2a8a5
BLAKE2b-256 12b5e5f0426861b1c5658f412091d41c18cae16fadafe257f042d8e0f6c4f52e

See more details on using hashes here.

Provenance

The following attestation bundles were made for supriya-26.2b1-cp314-cp314-manylinux_2_24_x86_64.manylinux_2_28_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-26.2b1-cp314-cp314-manylinux_2_24_aarch64.manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for supriya-26.2b1-cp314-cp314-manylinux_2_24_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 f0cef579d0a9cb60426f0eae934be84898a18822ea540447f11971de955d4fdd
MD5 188a7b51d2992eccd55891953c5f15a7
BLAKE2b-256 d19b4b92dd47cd001ab58945b44e321aa49de3ed64ef5d157537edf89ae8687e

See more details on using hashes here.

Provenance

The following attestation bundles were made for supriya-26.2b1-cp314-cp314-manylinux_2_24_aarch64.manylinux_2_28_aarch64.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-26.2b1-cp314-cp314-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for supriya-26.2b1-cp314-cp314-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 a79d5c3eedbe81d62a3956b82310740794779e212e26ab8b8fede28966bf7a8c
MD5 7ad402840662ab5a746c42e5d826b6dd
BLAKE2b-256 e6f0016f39c80001a97374a5c63f72bfc3a22a2cf521465f6c4fd8b40316a8ff

See more details on using hashes here.

Provenance

The following attestation bundles were made for supriya-26.2b1-cp314-cp314-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-26.2b1-cp314-cp314-macosx_10_15_x86_64.whl.

File metadata

File hashes

Hashes for supriya-26.2b1-cp314-cp314-macosx_10_15_x86_64.whl
Algorithm Hash digest
SHA256 6ed5089f2ad143b9585e0113f17b684cde61255dc21b2c1f202b86749ad38972
MD5 49ce30c0e48eb87a042348c6adf01e2e
BLAKE2b-256 8b5e0a91a789d4caaf99042db36e2f14f71e9e55dc00532eb8dc1570ea9a5c1b

See more details on using hashes here.

Provenance

The following attestation bundles were made for supriya-26.2b1-cp314-cp314-macosx_10_15_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-26.2b1-cp313-cp313-win_arm64.whl.

File metadata

  • Download URL: supriya-26.2b1-cp313-cp313-win_arm64.whl
  • Upload date:
  • Size: 1.1 MB
  • Tags: CPython 3.13, Windows ARM64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.7

File hashes

Hashes for supriya-26.2b1-cp313-cp313-win_arm64.whl
Algorithm Hash digest
SHA256 fdd8ce1a5073b331a7511dc0bc761b4b97be6c553f606200615ae02abaf54ca1
MD5 366825775f5133f17e1ef6e405c261ad
BLAKE2b-256 76cb40099690e39fab8489432ef92d7144b7648cf63ef9b7ada1f5e18b1ea064

See more details on using hashes here.

Provenance

The following attestation bundles were made for supriya-26.2b1-cp313-cp313-win_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-26.2b1-cp313-cp313-win_amd64.whl.

File metadata

  • Download URL: supriya-26.2b1-cp313-cp313-win_amd64.whl
  • Upload date:
  • Size: 1.1 MB
  • Tags: CPython 3.13, Windows x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.7

File hashes

Hashes for supriya-26.2b1-cp313-cp313-win_amd64.whl
Algorithm Hash digest
SHA256 7aaa18083361d7374d07fb98a234bc0c14007135d6dba800895daa8934870cca
MD5 797238bd7343227c34f38f6c512d2bdd
BLAKE2b-256 1c1e270c97bd355ba00c6344513bb8c6c7a1637f8ce5655a8b40fc0f062797d8

See more details on using hashes here.

Provenance

The following attestation bundles were made for supriya-26.2b1-cp313-cp313-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-26.2b1-cp313-cp313-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for supriya-26.2b1-cp313-cp313-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 5463028e988ccb34c21b6fc8abc1aabc5f57cc1dadfd3f53facd25808f9984dc
MD5 0668b9e1e9e025376b2970a6daa47ff6
BLAKE2b-256 8cfd418c544edca5876789993e83e7f1362e89d25334bb04b93607583cc6a070

See more details on using hashes here.

Provenance

The following attestation bundles were made for supriya-26.2b1-cp313-cp313-musllinux_1_2_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-26.2b1-cp313-cp313-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for supriya-26.2b1-cp313-cp313-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 72ee8b435192311af7b3f1b90ca057dad4712dd501d89321f362933f2d937610
MD5 f04a1efa7c9401826b2fc00bd5491f2f
BLAKE2b-256 05ca00178c938b7fb1920dedad2b9f9dc1f7185413f08b24850cb334fa108b0f

See more details on using hashes here.

Provenance

The following attestation bundles were made for supriya-26.2b1-cp313-cp313-musllinux_1_2_aarch64.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-26.2b1-cp313-cp313-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for supriya-26.2b1-cp313-cp313-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 88e99ce0ccca081079dd16e0cc5a8b6ce53ab39687d86686cfef8cb5b1951277
MD5 0d039cc4905b285b3d53d03ee31405c1
BLAKE2b-256 cba8d9398899a88ab80415eb18205426557b32f83bbb2a20f7fd1211cb296d3c

See more details on using hashes here.

Provenance

The following attestation bundles were made for supriya-26.2b1-cp313-cp313-manylinux_2_24_x86_64.manylinux_2_28_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-26.2b1-cp313-cp313-manylinux_2_24_aarch64.manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for supriya-26.2b1-cp313-cp313-manylinux_2_24_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 e03e11c3119d405484297e75fdd877aa456cd09b87d4e265eba2dda9e4ff66c9
MD5 aa5a9ed19a9d880de90554af9b8782ac
BLAKE2b-256 40753f7b770615d6306144e5b83d9dfd0e2a1ba083061d57c8f6def55ef295fb

See more details on using hashes here.

Provenance

The following attestation bundles were made for supriya-26.2b1-cp313-cp313-manylinux_2_24_aarch64.manylinux_2_28_aarch64.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-26.2b1-cp313-cp313-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for supriya-26.2b1-cp313-cp313-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 77699247d655356fc88ccca90c7196ec54ac418c7cc748b793073d2cfd0dd06c
MD5 2899b90837c1a2fe857aced62aaf2122
BLAKE2b-256 65577cd935aad7801d97d704c5f89584f8916c25594910dc5890bfc255355644

See more details on using hashes here.

Provenance

The following attestation bundles were made for supriya-26.2b1-cp313-cp313-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-26.2b1-cp313-cp313-macosx_10_13_x86_64.whl.

File metadata

File hashes

Hashes for supriya-26.2b1-cp313-cp313-macosx_10_13_x86_64.whl
Algorithm Hash digest
SHA256 4164018b5b51afe471cf67da9a377cd72d5ca2390f9beff09ec0e35a76efe475
MD5 f9057b94cf04cc766fda6f17e472311a
BLAKE2b-256 215416c79737866e723029961343895428f4ca77ccad3b9e1fb19869dcff9836

See more details on using hashes here.

Provenance

The following attestation bundles were made for supriya-26.2b1-cp313-cp313-macosx_10_13_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-26.2b1-cp312-cp312-win_arm64.whl.

File metadata

  • Download URL: supriya-26.2b1-cp312-cp312-win_arm64.whl
  • Upload date:
  • Size: 1.1 MB
  • Tags: CPython 3.12, Windows ARM64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.7

File hashes

Hashes for supriya-26.2b1-cp312-cp312-win_arm64.whl
Algorithm Hash digest
SHA256 7895c86ea4b0650db59407a043dcabc7391996937460c1a7182cfc22748bfeb7
MD5 68c2cf037ecaaac3ab09be73af5f46a2
BLAKE2b-256 63ea5a9c0ec8e83a56fd9be865565d0e8b8b8b5ba6ab9db4d943d8b3fe624795

See more details on using hashes here.

Provenance

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

File metadata

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

File hashes

Hashes for supriya-26.2b1-cp312-cp312-win_amd64.whl
Algorithm Hash digest
SHA256 fa7a8b1753cee8d2e4f1a7fb09fc1d534ff9ca50ba3dd9f669a2385f7bb017d3
MD5 1e8105372c2ffddb42e94a3ef32c3981
BLAKE2b-256 cd38156b909559726131fa9e5d8747a8c12dba039d46f2bbe5eb0e02fcf8bb66

See more details on using hashes here.

Provenance

The following attestation bundles were made for supriya-26.2b1-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-26.2b1-cp312-cp312-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for supriya-26.2b1-cp312-cp312-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 da84b87aede5ab712e79d8713cf2aeffe234b30291f1b09f36a0b78e0a76e3d1
MD5 10e1ef22404a8b27aa37ec651d8aaac5
BLAKE2b-256 3f543e2f4e466fac890a9b00e636aa39018a31d9c000075560b6d103b378b5c4

See more details on using hashes here.

Provenance

The following attestation bundles were made for supriya-26.2b1-cp312-cp312-musllinux_1_2_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-26.2b1-cp312-cp312-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for supriya-26.2b1-cp312-cp312-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 bfcf54a3af2e299e25749a0b5957376e0ee94016f1ee740df848bc82d3a05b86
MD5 481c2f66292ae5350740bb3cd6738c3f
BLAKE2b-256 854ab7c713f2b0bad339dead893c51ad4d81320c083b825fd57c522da66c4826

See more details on using hashes here.

Provenance

The following attestation bundles were made for supriya-26.2b1-cp312-cp312-musllinux_1_2_aarch64.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-26.2b1-cp312-cp312-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for supriya-26.2b1-cp312-cp312-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 8ee7fc8fe272cad98d22ef243381a7537e99dca856002ff4baa7e361cb4ba57a
MD5 c7712fbbc4fd629c5c06fa3d04bcb584
BLAKE2b-256 505f4896c38020fb7e01a4bc731ef6fe1b6729b6799bdc3a43652d2f0186fe7e

See more details on using hashes here.

Provenance

The following attestation bundles were made for supriya-26.2b1-cp312-cp312-manylinux_2_24_x86_64.manylinux_2_28_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-26.2b1-cp312-cp312-manylinux_2_24_aarch64.manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for supriya-26.2b1-cp312-cp312-manylinux_2_24_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 72aedfbaa556b5da62639a1cb85e00cef103d8e61bdd82081a3fc84db06b9de2
MD5 457ac04f1e87ef13e719ea26c2fa8436
BLAKE2b-256 5b6b7c2d0d1dc740f70628fe781f29f9abf74d54dc37a26f15492b87f77a0075

See more details on using hashes here.

Provenance

The following attestation bundles were made for supriya-26.2b1-cp312-cp312-manylinux_2_24_aarch64.manylinux_2_28_aarch64.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-26.2b1-cp312-cp312-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for supriya-26.2b1-cp312-cp312-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 fbedad2c4f26f9aebc612d52d11af692d3a5a0eb4db109a2920a7391678b2ac8
MD5 3c9e2477edf1b4ed4da2130974b25136
BLAKE2b-256 541d03aeb11f05e3b869a3f25975f4f38f9b22f302a969fa5c21101e1f755f96

See more details on using hashes here.

Provenance

The following attestation bundles were made for supriya-26.2b1-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-26.2b1-cp312-cp312-macosx_10_13_x86_64.whl.

File metadata

File hashes

Hashes for supriya-26.2b1-cp312-cp312-macosx_10_13_x86_64.whl
Algorithm Hash digest
SHA256 a27ebe02e1cc59eaf469d339ad198aa8bdee032aa9b76bf93b0a7567f81e56ab
MD5 5098f1907f272c3fb9cd77e4119e03f7
BLAKE2b-256 1579c5fc373beb5630d1536e9c0cb55a7fd098ca4c95c1ad2263ebdc4975d60e

See more details on using hashes here.

Provenance

The following attestation bundles were made for supriya-26.2b1-cp312-cp312-macosx_10_13_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-26.2b1-cp311-cp311-win_arm64.whl.

File metadata

  • Download URL: supriya-26.2b1-cp311-cp311-win_arm64.whl
  • Upload date:
  • Size: 1.1 MB
  • Tags: CPython 3.11, Windows ARM64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.7

File hashes

Hashes for supriya-26.2b1-cp311-cp311-win_arm64.whl
Algorithm Hash digest
SHA256 b5eebe8ec69b50f61747aeee128794a96a8d16144d8efc0644db629df33dd1b5
MD5 44348b0ce81723044768f6d38fed67ae
BLAKE2b-256 f488e5a35f13377bc928db9233c28395de6a97141459666d72d6465921285c17

See more details on using hashes here.

Provenance

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

File metadata

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

File hashes

Hashes for supriya-26.2b1-cp311-cp311-win_amd64.whl
Algorithm Hash digest
SHA256 7c193f4ac6ab4514dfaf81ac8e3b05852fcc9793865baeb01ed072a846ca2c09
MD5 61e20eafe57251e93371ffdf8c3a389d
BLAKE2b-256 ba30ea1d23378113075069aa49bbd6f4d20a4417e80503b2e67b769de8284396

See more details on using hashes here.

Provenance

The following attestation bundles were made for supriya-26.2b1-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-26.2b1-cp311-cp311-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for supriya-26.2b1-cp311-cp311-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 32a49ffb0a8ae59cb2d45dd42063d6fbda1a3654f811919657aa81152b2dea2b
MD5 5188a05929b9ce5ec16fca5da7cedfd3
BLAKE2b-256 23b02cd62f473bf4787d4b051384c734d249df1fc0570ffa81b7a4f1e34e4128

See more details on using hashes here.

Provenance

The following attestation bundles were made for supriya-26.2b1-cp311-cp311-musllinux_1_2_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-26.2b1-cp311-cp311-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for supriya-26.2b1-cp311-cp311-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 330d7e57eefe4c6c2f48f3f690573a11ec6ca0475239bcb846141e22cb2a6c59
MD5 b0c8a046708b0faca8fa4210d970fd4c
BLAKE2b-256 660347df0e528b8976b978f459fd1c6002de0f9d8992d6f3f4349642870c95d2

See more details on using hashes here.

Provenance

The following attestation bundles were made for supriya-26.2b1-cp311-cp311-musllinux_1_2_aarch64.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-26.2b1-cp311-cp311-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for supriya-26.2b1-cp311-cp311-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 0bbaa48e9372aa95d929454a3b805f883a57a88b18474faf5290aa05d7892b29
MD5 540e2e4a8e7b34ac517d93409e838531
BLAKE2b-256 e0cd58ae843e3f1167a07cc7e84f259c9828cedb238f4efe50eed95870c3bad9

See more details on using hashes here.

Provenance

The following attestation bundles were made for supriya-26.2b1-cp311-cp311-manylinux_2_24_x86_64.manylinux_2_28_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-26.2b1-cp311-cp311-manylinux_2_24_aarch64.manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for supriya-26.2b1-cp311-cp311-manylinux_2_24_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 bb2784d9f6935ff8ce016f019c8d56c5088a50f4560015313a859a80d931fe3a
MD5 2ded139732e19066fe28b71a083ed987
BLAKE2b-256 ccc7838a01b15014dabf660371eebd800ed31214526ccaae13bb0351013a4564

See more details on using hashes here.

Provenance

The following attestation bundles were made for supriya-26.2b1-cp311-cp311-manylinux_2_24_aarch64.manylinux_2_28_aarch64.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-26.2b1-cp311-cp311-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for supriya-26.2b1-cp311-cp311-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 188d1d6c05a979820cac8b045b7e4445e67a2a84e63db8f130a6e909593e7c0a
MD5 3bea3779f796a3e3ac9ac53cd1ec4a2e
BLAKE2b-256 83a06e4bddb4bc720f55976278ff30e5fd2185f690634f5f419c734294b37f77

See more details on using hashes here.

Provenance

The following attestation bundles were made for supriya-26.2b1-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-26.2b1-cp311-cp311-macosx_10_9_x86_64.whl.

File metadata

File hashes

Hashes for supriya-26.2b1-cp311-cp311-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 505796faa1136fe08300b1b71ded3a384c05ef791491be3c7a4596020e0d077a
MD5 96bebada7c3dc528d94e0e67ad9190a4
BLAKE2b-256 534268de6dd7df430017c42508b403dd5269251ccbe3e881a1b765cc06b6ede8

See more details on using hashes here.

Provenance

The following attestation bundles were made for supriya-26.2b1-cp311-cp311-macosx_10_9_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-26.2b1-cp310-cp310-win_arm64.whl.

File metadata

  • Download URL: supriya-26.2b1-cp310-cp310-win_arm64.whl
  • Upload date:
  • Size: 1.1 MB
  • Tags: CPython 3.10, Windows ARM64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.7

File hashes

Hashes for supriya-26.2b1-cp310-cp310-win_arm64.whl
Algorithm Hash digest
SHA256 68e932ba51824905d923f5d9cec279489c794b50695348b6257aa1de70c42e41
MD5 0476b6e2b6a3bb06b2891a043e54de46
BLAKE2b-256 f87e22a4614f82a1e468532edeb66dc4e029a8c9ffb0aacb7a945ac673cce92b

See more details on using hashes here.

Provenance

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

File metadata

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

File hashes

Hashes for supriya-26.2b1-cp310-cp310-win_amd64.whl
Algorithm Hash digest
SHA256 f46d4ddaaa7bf9100002fd55565cb4dd60effe9c877d2c8399aa99353cef74b9
MD5 f88fbebe1ce6e7486843b7fa012307c2
BLAKE2b-256 37ccd0d7af7740d35ec0f3d8c8c2087c60001d722d0962fadb43caebd7433a2c

See more details on using hashes here.

Provenance

The following attestation bundles were made for supriya-26.2b1-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-26.2b1-cp310-cp310-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for supriya-26.2b1-cp310-cp310-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 57c3aff561d11f333d0badd7b46816c511369f69a688b700098328550f323eb7
MD5 06db8b21268171978ff839f1b6377e42
BLAKE2b-256 644f3253ccb9518c87778d86bc13042cba2130857f2f43946a6e28347804aebe

See more details on using hashes here.

Provenance

The following attestation bundles were made for supriya-26.2b1-cp310-cp310-musllinux_1_2_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-26.2b1-cp310-cp310-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for supriya-26.2b1-cp310-cp310-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 503e4ca5e75c5a81884c1dd62489f2f1be882d15b6d4bdad0feeeb98e0bf3718
MD5 633e252fe99b53e4debafa6f0f70b5d1
BLAKE2b-256 beef1b4f716ea6a479c8c434bdadff482db69768d04754cb546818ff996c3df5

See more details on using hashes here.

Provenance

The following attestation bundles were made for supriya-26.2b1-cp310-cp310-musllinux_1_2_aarch64.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-26.2b1-cp310-cp310-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for supriya-26.2b1-cp310-cp310-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 546619e9b9946630911cc20db1a9fd1dd1efe019c630de1d4f6a4eea51b514fb
MD5 23815d117a883416ed947fc98b86277f
BLAKE2b-256 b130e5ef5f624f2ab5048963b36d569cc3a0a133d1c8920a71a04d945eee26c1

See more details on using hashes here.

Provenance

The following attestation bundles were made for supriya-26.2b1-cp310-cp310-manylinux_2_24_x86_64.manylinux_2_28_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-26.2b1-cp310-cp310-manylinux_2_24_aarch64.manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for supriya-26.2b1-cp310-cp310-manylinux_2_24_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 a538c6f0b9d1d7d708c042f566b75226f892ea6d5e016e664a33b3f81ac2b206
MD5 5b94d4e7d0dffb25ea631d7196a770ce
BLAKE2b-256 1c40583b322c6add683e7315cd944c27bc3b4b8178b5e6ca313d591d7efa8180

See more details on using hashes here.

Provenance

The following attestation bundles were made for supriya-26.2b1-cp310-cp310-manylinux_2_24_aarch64.manylinux_2_28_aarch64.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-26.2b1-cp310-cp310-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for supriya-26.2b1-cp310-cp310-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 899190274a638e5bcde1cd4472a9a4d5ad9ca53c131f3bb3bc346aa45d3dbd70
MD5 07f30eb311b3c601e90704750a07baef
BLAKE2b-256 b10aab0bc1456b358d9f7044386321fa944bdc79b08d860c14cb5015aa060896

See more details on using hashes here.

Provenance

The following attestation bundles were made for supriya-26.2b1-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.

File details

Details for the file supriya-26.2b1-cp310-cp310-macosx_10_9_x86_64.whl.

File metadata

File hashes

Hashes for supriya-26.2b1-cp310-cp310-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 6ef522d5edc9c9735762fa5906785f83996657267024691852c12989ca5262c1
MD5 7d9937f6b8635122294437a3a98507f5
BLAKE2b-256 092e18f846c6d16cdec4dddb8e6b1e5037fa8c2283efb58dab864ea8c0712609

See more details on using hashes here.

Provenance

The following attestation bundles were made for supriya-26.2b1-cp310-cp310-macosx_10_9_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.

Supported by

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