A Python API for SuperCollider
Project description
Supriya
Supriya is a Python API for SuperCollider.
Supriya lets you:
-
Boot and communicate with SuperCollider's synthesis engine in realtime.
-
Explore nonrealtime composition with scores.
-
Compile SuperCollider SynthDefs natively in Python code
-
Build time-agnostic asyncio-aware applications with the context interface.
-
Schedule patterns and callbacks with tempo- and meter-aware clocks
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
Built Distributions
File details
Details for the file supriya-24.11b0.tar.gz
.
File metadata
- Download URL: supriya-24.11b0.tar.gz
- Upload date:
- Size: 3.1 MB
- Tags: Source
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/5.1.1 CPython/3.12.7
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 3a375dfde53793bb22c347c440896447b7c5207c1fd631f0ad67932550e9f567 |
|
MD5 | d938f2359e7fbd2f94718000ac0bf768 |
|
BLAKE2b-256 | e070cb370b8498777bd1d6f3087ec7eaea229b808cf3201231798f42207c4eac |
Provenance
The following attestation bundles were made for supriya-24.11b0.tar.gz
:
Publisher:
publish.yml
on supriya-project/supriya
-
Statement type:
https://in-toto.io/Statement/v1
- Predicate type:
https://docs.pypi.org/attestations/publish/v1
- Subject name:
supriya-24.11b0.tar.gz
- Subject digest:
3a375dfde53793bb22c347c440896447b7c5207c1fd631f0ad67932550e9f567
- Sigstore transparency entry: 147632941
- Sigstore integration time:
- Predicate type:
File details
Details for the file supriya-24.11b0-cp312-cp312-win_amd64.whl
.
File metadata
- Download URL: supriya-24.11b0-cp312-cp312-win_amd64.whl
- Upload date:
- Size: 1.2 MB
- Tags: CPython 3.12, Windows x86-64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/5.1.1 CPython/3.12.7
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | e17a1e43ed7aaf22c98073cc5f9465b3ada97bc724c239893674b62cfb77c4cb |
|
MD5 | 0887776bf3ccfa74cd17e54af73020fa |
|
BLAKE2b-256 | e15c2937c9f03da33efdb8013d544617b116432e00154050ce73d3c51cdc6992 |
Provenance
The following attestation bundles were made for supriya-24.11b0-cp312-cp312-win_amd64.whl
:
Publisher:
publish.yml
on supriya-project/supriya
-
Statement type:
https://in-toto.io/Statement/v1
- Predicate type:
https://docs.pypi.org/attestations/publish/v1
- Subject name:
supriya-24.11b0-cp312-cp312-win_amd64.whl
- Subject digest:
e17a1e43ed7aaf22c98073cc5f9465b3ada97bc724c239893674b62cfb77c4cb
- Sigstore transparency entry: 147632994
- Sigstore integration time:
- Predicate type:
File details
Details for the file supriya-24.11b0-cp312-cp312-win32.whl
.
File metadata
- Download URL: supriya-24.11b0-cp312-cp312-win32.whl
- Upload date:
- Size: 1.2 MB
- Tags: CPython 3.12, Windows x86
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/5.1.1 CPython/3.12.7
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | d7b6600fb1c88f6d380bf39ea07a5471cdbc7d49fdd8c467e0b370371b8765bc |
|
MD5 | 1e2fc7c5581a79d4ea9ea8b6ad41be5f |
|
BLAKE2b-256 | 37a9e3c3ef4f195ef4cfb8b01d4d4c7fc644d6623e700c371e752d883f36a648 |
Provenance
The following attestation bundles were made for supriya-24.11b0-cp312-cp312-win32.whl
:
Publisher:
publish.yml
on supriya-project/supriya
-
Statement type:
https://in-toto.io/Statement/v1
- Predicate type:
https://docs.pypi.org/attestations/publish/v1
- Subject name:
supriya-24.11b0-cp312-cp312-win32.whl
- Subject digest:
d7b6600fb1c88f6d380bf39ea07a5471cdbc7d49fdd8c467e0b370371b8765bc
- Sigstore transparency entry: 147633000
- Sigstore integration time:
- Predicate type:
File details
Details for the file supriya-24.11b0-cp312-cp312-musllinux_1_1_x86_64.whl
.
File metadata
- Download URL: supriya-24.11b0-cp312-cp312-musllinux_1_1_x86_64.whl
- Upload date:
- Size: 3.0 MB
- Tags: CPython 3.12, musllinux: musl 1.1+ x86-64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/5.1.1 CPython/3.12.7
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | fd27a438cf08a92f9234b052422e74efac0a452597e278ebaca945f3628335f2 |
|
MD5 | 83ba1d231298e67fffd34f280f793a50 |
|
BLAKE2b-256 | 05a090881a3647af239988cde764e1ef6c581005761384e49159231c0cf1a760 |
Provenance
The following attestation bundles were made for supriya-24.11b0-cp312-cp312-musllinux_1_1_x86_64.whl
:
Publisher:
publish.yml
on supriya-project/supriya
-
Statement type:
https://in-toto.io/Statement/v1
- Predicate type:
https://docs.pypi.org/attestations/publish/v1
- Subject name:
supriya-24.11b0-cp312-cp312-musllinux_1_1_x86_64.whl
- Subject digest:
fd27a438cf08a92f9234b052422e74efac0a452597e278ebaca945f3628335f2
- Sigstore transparency entry: 147632947
- Sigstore integration time:
- Predicate type:
File details
Details for the file supriya-24.11b0-cp312-cp312-musllinux_1_1_i686.whl
.
File metadata
- Download URL: supriya-24.11b0-cp312-cp312-musllinux_1_1_i686.whl
- Upload date:
- Size: 3.0 MB
- Tags: CPython 3.12, musllinux: musl 1.1+ i686
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/5.1.1 CPython/3.12.7
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | f3e5fc01f741e6e7542efd07ac608a96c47e14380e80c48ae8f6beed2d683b6c |
|
MD5 | 431e4138db138aa0511dcc76427bcd22 |
|
BLAKE2b-256 | 2e85462ae6e59f94a0dfbfdd48c64b1b8fbd2bde5b401b37e4b6ff64872f79d2 |
Provenance
The following attestation bundles were made for supriya-24.11b0-cp312-cp312-musllinux_1_1_i686.whl
:
Publisher:
publish.yml
on supriya-project/supriya
-
Statement type:
https://in-toto.io/Statement/v1
- Predicate type:
https://docs.pypi.org/attestations/publish/v1
- Subject name:
supriya-24.11b0-cp312-cp312-musllinux_1_1_i686.whl
- Subject digest:
f3e5fc01f741e6e7542efd07ac608a96c47e14380e80c48ae8f6beed2d683b6c
- Sigstore transparency entry: 147632964
- Sigstore integration time:
- Predicate type:
File details
Details for the file supriya-24.11b0-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
.
File metadata
- Download URL: supriya-24.11b0-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
- Upload date:
- Size: 2.4 MB
- Tags: CPython 3.12, manylinux: glibc 2.17+ x86-64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/5.1.1 CPython/3.12.7
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 7e5c494d2ab644d1a0097899b78c976703f40096eba236256fe9a8483c483da7 |
|
MD5 | 72458bd8140c18b12239303cc454e8aa |
|
BLAKE2b-256 | f8c66bf934a0c781018bcd9c725d3bfb2b0bcb6d6fda36273ee86b5f1935fb81 |
Provenance
The following attestation bundles were made for supriya-24.11b0-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
:
Publisher:
publish.yml
on supriya-project/supriya
-
Statement type:
https://in-toto.io/Statement/v1
- Predicate type:
https://docs.pypi.org/attestations/publish/v1
- Subject name:
supriya-24.11b0-cp312-cp312-manylinux2014_x86_64.manylinux_2_17_x86_64.whl
- Subject digest:
7e5c494d2ab644d1a0097899b78c976703f40096eba236256fe9a8483c483da7
- Sigstore transparency entry: 147632978
- Sigstore integration time:
- Predicate type:
File details
Details for the file supriya-24.11b0-cp312-cp312-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl
.
File metadata
- Download URL: supriya-24.11b0-cp312-cp312-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl
- Upload date:
- Size: 2.4 MB
- Tags: CPython 3.12, manylinux: glibc 2.17+ i686, manylinux: glibc 2.5+ i686
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/5.1.1 CPython/3.12.7
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 96106431548b02067e685e65a7197f4481108ce68dd63dcc86b97ed908a8e9a8 |
|
MD5 | 34a872b3e3a75f82f05cb282490ddb06 |
|
BLAKE2b-256 | 4e95593f093d6fd72b23ca8f89acc193979bda0aaf5ae9b364a775c804b7127f |
Provenance
The following attestation bundles were made for supriya-24.11b0-cp312-cp312-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl
:
Publisher:
publish.yml
on supriya-project/supriya
-
Statement type:
https://in-toto.io/Statement/v1
- Predicate type:
https://docs.pypi.org/attestations/publish/v1
- Subject name:
supriya-24.11b0-cp312-cp312-manylinux1_i686.manylinux2014_i686.manylinux_2_17_i686.manylinux_2_5_i686.whl
- Subject digest:
96106431548b02067e685e65a7197f4481108ce68dd63dcc86b97ed908a8e9a8
- Sigstore transparency entry: 147632954
- Sigstore integration time:
- Predicate type:
File details
Details for the file supriya-24.11b0-cp312-cp312-macosx_11_0_arm64.whl
.
File metadata
- Download URL: supriya-24.11b0-cp312-cp312-macosx_11_0_arm64.whl
- Upload date:
- Size: 1.3 MB
- Tags: CPython 3.12, macOS 11.0+ ARM64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/5.1.1 CPython/3.12.7
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | a8b14b9354c94dcd6bc780df75bfc12e502df47d890df53e8ba034dcb71489f3 |
|
MD5 | fd72115989d2c895588bf603dca9520d |
|
BLAKE2b-256 | 20f2a5c72ffd94613a36c1ae669abad491c8384467f64f9282aa48f2a5ab6a50 |
Provenance
The following attestation bundles were made for supriya-24.11b0-cp312-cp312-macosx_11_0_arm64.whl
:
Publisher:
publish.yml
on supriya-project/supriya
-
Statement type:
https://in-toto.io/Statement/v1
- Predicate type:
https://docs.pypi.org/attestations/publish/v1
- Subject name:
supriya-24.11b0-cp312-cp312-macosx_11_0_arm64.whl
- Subject digest:
a8b14b9354c94dcd6bc780df75bfc12e502df47d890df53e8ba034dcb71489f3
- Sigstore transparency entry: 147633012
- Sigstore integration time:
- Predicate type:
File details
Details for the file supriya-24.11b0-cp311-cp311-win_amd64.whl
.
File metadata
- Download URL: supriya-24.11b0-cp311-cp311-win_amd64.whl
- Upload date:
- Size: 1.2 MB
- Tags: CPython 3.11, Windows x86-64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/5.1.1 CPython/3.12.7
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 8bf9657be0f6c6f92c556bf0610f8bdffba0114548ce55fee68e7e0518407ef2 |
|
MD5 | c33b260c3ad513fea320b239d0192fd9 |
|
BLAKE2b-256 | e351c18957f3851ac74b9f092dec90dd1bd310422ec45eff157af4b7eca21e18 |
Provenance
The following attestation bundles were made for supriya-24.11b0-cp311-cp311-win_amd64.whl
:
Publisher:
publish.yml
on supriya-project/supriya
-
Statement type:
https://in-toto.io/Statement/v1
- Predicate type:
https://docs.pypi.org/attestations/publish/v1
- Subject name:
supriya-24.11b0-cp311-cp311-win_amd64.whl
- Subject digest:
8bf9657be0f6c6f92c556bf0610f8bdffba0114548ce55fee68e7e0518407ef2
- Sigstore transparency entry: 147633005
- Sigstore integration time:
- Predicate type:
File details
Details for the file supriya-24.11b0-cp311-cp311-win32.whl
.
File metadata
- Download URL: supriya-24.11b0-cp311-cp311-win32.whl
- Upload date:
- Size: 1.2 MB
- Tags: CPython 3.11, Windows x86
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/5.1.1 CPython/3.12.7
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 718674bbd5f89cf2fac52a2bf423aec5a2fa11bb1a0f679ee2514108ce2c25f6 |
|
MD5 | 2a69ff3d8bd3a18c771762c03d9f4bab |
|
BLAKE2b-256 | 0cdfd2d2b527063171e3217ee36dba1cd3f49902ae2011a43465c5e6279f95da |
Provenance
The following attestation bundles were made for supriya-24.11b0-cp311-cp311-win32.whl
:
Publisher:
publish.yml
on supriya-project/supriya
-
Statement type:
https://in-toto.io/Statement/v1
- Predicate type:
https://docs.pypi.org/attestations/publish/v1
- Subject name:
supriya-24.11b0-cp311-cp311-win32.whl
- Subject digest:
718674bbd5f89cf2fac52a2bf423aec5a2fa11bb1a0f679ee2514108ce2c25f6
- Sigstore transparency entry: 147632983
- Sigstore integration time:
- Predicate type:
File details
Details for the file supriya-24.11b0-cp311-cp311-musllinux_1_1_x86_64.whl
.
File metadata
- Download URL: supriya-24.11b0-cp311-cp311-musllinux_1_1_x86_64.whl
- Upload date:
- Size: 2.9 MB
- Tags: CPython 3.11, musllinux: musl 1.1+ x86-64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/5.1.1 CPython/3.12.7
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 5820c73494a536f994feab7b606ad7086fcf0f6a442813450349ac84cc078163 |
|
MD5 | f659a08e176abec8ba240b50b42ec030 |
|
BLAKE2b-256 | 36772d7c018a0bcb52f064d8f782b95fb0fd47145e00740551ab4c533c760fa9 |
Provenance
The following attestation bundles were made for supriya-24.11b0-cp311-cp311-musllinux_1_1_x86_64.whl
:
Publisher:
publish.yml
on supriya-project/supriya
-
Statement type:
https://in-toto.io/Statement/v1
- Predicate type:
https://docs.pypi.org/attestations/publish/v1
- Subject name:
supriya-24.11b0-cp311-cp311-musllinux_1_1_x86_64.whl
- Subject digest:
5820c73494a536f994feab7b606ad7086fcf0f6a442813450349ac84cc078163
- Sigstore transparency entry: 147632951
- Sigstore integration time:
- Predicate type:
File details
Details for the file supriya-24.11b0-cp311-cp311-musllinux_1_1_i686.whl
.
File metadata
- Download URL: supriya-24.11b0-cp311-cp311-musllinux_1_1_i686.whl
- Upload date:
- Size: 3.0 MB
- Tags: CPython 3.11, musllinux: musl 1.1+ i686
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/5.1.1 CPython/3.12.7
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 9fbef9d14df4a4b0c81e3c3ced5265b3cbacee01210bdd428ef1577a46d0655b |
|
MD5 | f388ebec6edacf8baec57cc91496ebcc |
|
BLAKE2b-256 | b462c0e728b4e5f8019a09da4d0b62f8bbc4021ef09594584819f0e14513ff2b |
Provenance
The following attestation bundles were made for supriya-24.11b0-cp311-cp311-musllinux_1_1_i686.whl
:
Publisher:
publish.yml
on supriya-project/supriya
-
Statement type:
https://in-toto.io/Statement/v1
- Predicate type:
https://docs.pypi.org/attestations/publish/v1
- Subject name:
supriya-24.11b0-cp311-cp311-musllinux_1_1_i686.whl
- Subject digest:
9fbef9d14df4a4b0c81e3c3ced5265b3cbacee01210bdd428ef1577a46d0655b
- Sigstore transparency entry: 147633007
- Sigstore integration time:
- Predicate type:
File details
Details for the file supriya-24.11b0-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
.
File metadata
- Download URL: supriya-24.11b0-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
- Upload date:
- Size: 2.4 MB
- Tags: CPython 3.11, manylinux: glibc 2.17+ x86-64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/5.1.1 CPython/3.12.7
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 36e732c307260958a3c43fe79947964385ec4478ebcdd00c4566e3bfaddb3630 |
|
MD5 | 8ed29839222789717c647f3bf7479e68 |
|
BLAKE2b-256 | 96dcf2fc2a4ccdd81bb46bc34de0a96f25c45bb9ffd1bc14c6e2d5827c20cf52 |
Provenance
The following attestation bundles were made for supriya-24.11b0-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
:
Publisher:
publish.yml
on supriya-project/supriya
-
Statement type:
https://in-toto.io/Statement/v1
- Predicate type:
https://docs.pypi.org/attestations/publish/v1
- Subject name:
supriya-24.11b0-cp311-cp311-manylinux2014_x86_64.manylinux_2_17_x86_64.whl
- Subject digest:
36e732c307260958a3c43fe79947964385ec4478ebcdd00c4566e3bfaddb3630
- Sigstore transparency entry: 147632988
- Sigstore integration time:
- Predicate type:
File details
Details for the file supriya-24.11b0-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl
.
File metadata
- Download URL: supriya-24.11b0-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl
- Upload date:
- Size: 2.4 MB
- Tags: CPython 3.11, manylinux: glibc 2.17+ i686, manylinux: glibc 2.5+ i686
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/5.1.1 CPython/3.12.7
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | c96dc3a819e1aa49b5ff01a1936362988fcd375613862d6a32f88b5911e80cdd |
|
MD5 | 8ea6e97244ef16267a9836af9288864e |
|
BLAKE2b-256 | 26f583ed8d02be383dfb4e7bae38f7f1a8ec54e08f8b5523aaebda253a61b09f |
Provenance
The following attestation bundles were made for supriya-24.11b0-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl
:
Publisher:
publish.yml
on supriya-project/supriya
-
Statement type:
https://in-toto.io/Statement/v1
- Predicate type:
https://docs.pypi.org/attestations/publish/v1
- Subject name:
supriya-24.11b0-cp311-cp311-manylinux1_i686.manylinux2014_i686.manylinux_2_17_i686.manylinux_2_5_i686.whl
- Subject digest:
c96dc3a819e1aa49b5ff01a1936362988fcd375613862d6a32f88b5911e80cdd
- Sigstore transparency entry: 147632975
- Sigstore integration time:
- Predicate type:
File details
Details for the file supriya-24.11b0-cp311-cp311-macosx_11_0_arm64.whl
.
File metadata
- Download URL: supriya-24.11b0-cp311-cp311-macosx_11_0_arm64.whl
- Upload date:
- Size: 1.3 MB
- Tags: CPython 3.11, macOS 11.0+ ARM64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/5.1.1 CPython/3.12.7
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | b9e29a6c91dcdf1d48ed60b3fd751870ec38a201314060d703701693bb3bf7e0 |
|
MD5 | bf7b76e0f3df8b164dbdf6e7d67643a3 |
|
BLAKE2b-256 | a95041767640001920551230f130406c751ea912d2336bc8971e675230157ccd |
Provenance
The following attestation bundles were made for supriya-24.11b0-cp311-cp311-macosx_11_0_arm64.whl
:
Publisher:
publish.yml
on supriya-project/supriya
-
Statement type:
https://in-toto.io/Statement/v1
- Predicate type:
https://docs.pypi.org/attestations/publish/v1
- Subject name:
supriya-24.11b0-cp311-cp311-macosx_11_0_arm64.whl
- Subject digest:
b9e29a6c91dcdf1d48ed60b3fd751870ec38a201314060d703701693bb3bf7e0
- Sigstore transparency entry: 147632946
- Sigstore integration time:
- Predicate type:
File details
Details for the file supriya-24.11b0-cp310-cp310-win_amd64.whl
.
File metadata
- Download URL: supriya-24.11b0-cp310-cp310-win_amd64.whl
- Upload date:
- Size: 1.2 MB
- Tags: CPython 3.10, Windows x86-64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/5.1.1 CPython/3.12.7
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 5624a416767b6f4e6518942d0a44258065b66fc9e8a0cf70f25b5bf0139e2ede |
|
MD5 | f8a310284f655169eb6d1443bbc032ea |
|
BLAKE2b-256 | a53b77af7caff59ae9a02213d2f60db2eff04a117549bb09d0913aad3a718b48 |
Provenance
The following attestation bundles were made for supriya-24.11b0-cp310-cp310-win_amd64.whl
:
Publisher:
publish.yml
on supriya-project/supriya
-
Statement type:
https://in-toto.io/Statement/v1
- Predicate type:
https://docs.pypi.org/attestations/publish/v1
- Subject name:
supriya-24.11b0-cp310-cp310-win_amd64.whl
- Subject digest:
5624a416767b6f4e6518942d0a44258065b66fc9e8a0cf70f25b5bf0139e2ede
- Sigstore transparency entry: 147632943
- Sigstore integration time:
- Predicate type:
File details
Details for the file supriya-24.11b0-cp310-cp310-win32.whl
.
File metadata
- Download URL: supriya-24.11b0-cp310-cp310-win32.whl
- Upload date:
- Size: 1.2 MB
- Tags: CPython 3.10, Windows x86
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/5.1.1 CPython/3.12.7
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 81d9da1416a418cbdb5ee05884957bc4d2c0d1ac4c894d908690fed408fab057 |
|
MD5 | 442712c505238289425cc6fb48ffca6b |
|
BLAKE2b-256 | 28d0ae4036281abbca7a110824fca5b4ce4c9721bfe96217aadf42cb1898c455 |
Provenance
The following attestation bundles were made for supriya-24.11b0-cp310-cp310-win32.whl
:
Publisher:
publish.yml
on supriya-project/supriya
-
Statement type:
https://in-toto.io/Statement/v1
- Predicate type:
https://docs.pypi.org/attestations/publish/v1
- Subject name:
supriya-24.11b0-cp310-cp310-win32.whl
- Subject digest:
81d9da1416a418cbdb5ee05884957bc4d2c0d1ac4c894d908690fed408fab057
- Sigstore transparency entry: 147632990
- Sigstore integration time:
- Predicate type:
File details
Details for the file supriya-24.11b0-cp310-cp310-musllinux_1_1_x86_64.whl
.
File metadata
- Download URL: supriya-24.11b0-cp310-cp310-musllinux_1_1_x86_64.whl
- Upload date:
- Size: 2.9 MB
- Tags: CPython 3.10, musllinux: musl 1.1+ x86-64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/5.1.1 CPython/3.12.7
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 82673e9343b8dfbb65a3728016352b0502374ab7b6c9c4daabb319c2e24c1994 |
|
MD5 | b3706d9eb735a80ea37b66d0b1ddfbd7 |
|
BLAKE2b-256 | 8be75cbc66c3a0b5a54988311fe39415ac5622f5e6ea3bab6aa8c6da724992b1 |
Provenance
The following attestation bundles were made for supriya-24.11b0-cp310-cp310-musllinux_1_1_x86_64.whl
:
Publisher:
publish.yml
on supriya-project/supriya
-
Statement type:
https://in-toto.io/Statement/v1
- Predicate type:
https://docs.pypi.org/attestations/publish/v1
- Subject name:
supriya-24.11b0-cp310-cp310-musllinux_1_1_x86_64.whl
- Subject digest:
82673e9343b8dfbb65a3728016352b0502374ab7b6c9c4daabb319c2e24c1994
- Sigstore transparency entry: 147632980
- Sigstore integration time:
- Predicate type:
File details
Details for the file supriya-24.11b0-cp310-cp310-musllinux_1_1_i686.whl
.
File metadata
- Download URL: supriya-24.11b0-cp310-cp310-musllinux_1_1_i686.whl
- Upload date:
- Size: 2.9 MB
- Tags: CPython 3.10, musllinux: musl 1.1+ i686
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/5.1.1 CPython/3.12.7
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | a3dcccf1494ae334dd764fadeb59d65ac40c3bd245272af11c45ff59e77fc06f |
|
MD5 | eff1ea37a1db050d067cef91301dfc2a |
|
BLAKE2b-256 | b8447846983e29fb8dba85564693a3bead40ff719b4649bf144af78849d0be90 |
Provenance
The following attestation bundles were made for supriya-24.11b0-cp310-cp310-musllinux_1_1_i686.whl
:
Publisher:
publish.yml
on supriya-project/supriya
-
Statement type:
https://in-toto.io/Statement/v1
- Predicate type:
https://docs.pypi.org/attestations/publish/v1
- Subject name:
supriya-24.11b0-cp310-cp310-musllinux_1_1_i686.whl
- Subject digest:
a3dcccf1494ae334dd764fadeb59d65ac40c3bd245272af11c45ff59e77fc06f
- Sigstore transparency entry: 147632971
- Sigstore integration time:
- Predicate type:
File details
Details for the file supriya-24.11b0-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
.
File metadata
- Download URL: supriya-24.11b0-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
- Upload date:
- Size: 2.4 MB
- Tags: CPython 3.10, manylinux: glibc 2.17+ x86-64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/5.1.1 CPython/3.12.7
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | f9f11b9741c5ba8ef6a345be87dc3bcfdd101120b09ac04fc7d419b162a9141c |
|
MD5 | 36c55df544b0f64f85ca17798f56d1a3 |
|
BLAKE2b-256 | a74ebd74f188ee5b1895becee4ac5a7b3c4e352fcede80cda063e882bff5c7aa |
Provenance
The following attestation bundles were made for supriya-24.11b0-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
:
Publisher:
publish.yml
on supriya-project/supriya
-
Statement type:
https://in-toto.io/Statement/v1
- Predicate type:
https://docs.pypi.org/attestations/publish/v1
- Subject name:
supriya-24.11b0-cp310-cp310-manylinux2014_x86_64.manylinux_2_17_x86_64.whl
- Subject digest:
f9f11b9741c5ba8ef6a345be87dc3bcfdd101120b09ac04fc7d419b162a9141c
- Sigstore transparency entry: 147632956
- Sigstore integration time:
- Predicate type:
File details
Details for the file supriya-24.11b0-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl
.
File metadata
- Download URL: supriya-24.11b0-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl
- Upload date:
- Size: 2.3 MB
- Tags: CPython 3.10, manylinux: glibc 2.17+ i686, manylinux: glibc 2.5+ i686
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/5.1.1 CPython/3.12.7
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 3deea6d7788609a380867d2dc31bc7382f32b043b2247975621b3ccf6066c6ea |
|
MD5 | d3d393952ffb8b8c29d1edb8bc349216 |
|
BLAKE2b-256 | 397ab4525967ef835cf5bd532beccd5787244e9c19c2cfe47558f3c6d884bfdc |
Provenance
The following attestation bundles were made for supriya-24.11b0-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl
:
Publisher:
publish.yml
on supriya-project/supriya
-
Statement type:
https://in-toto.io/Statement/v1
- Predicate type:
https://docs.pypi.org/attestations/publish/v1
- Subject name:
supriya-24.11b0-cp310-cp310-manylinux1_i686.manylinux2014_i686.manylinux_2_17_i686.manylinux_2_5_i686.whl
- Subject digest:
3deea6d7788609a380867d2dc31bc7382f32b043b2247975621b3ccf6066c6ea
- Sigstore transparency entry: 147632948
- Sigstore integration time:
- Predicate type:
File details
Details for the file supriya-24.11b0-cp310-cp310-macosx_11_0_arm64.whl
.
File metadata
- Download URL: supriya-24.11b0-cp310-cp310-macosx_11_0_arm64.whl
- Upload date:
- Size: 1.3 MB
- Tags: CPython 3.10, macOS 11.0+ ARM64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/5.1.1 CPython/3.12.7
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | befcf58936963ac330f8acd5e43ddb2b5a863465714d0ede09714d6fbf60ed99 |
|
MD5 | bd51f6b87a0181257d7622eb498eec2a |
|
BLAKE2b-256 | 1774b297a031bc8c00b6e4173ff42a695b44665204589c06d0418f30fb815901 |
Provenance
The following attestation bundles were made for supriya-24.11b0-cp310-cp310-macosx_11_0_arm64.whl
:
Publisher:
publish.yml
on supriya-project/supriya
-
Statement type:
https://in-toto.io/Statement/v1
- Predicate type:
https://docs.pypi.org/attestations/publish/v1
- Subject name:
supriya-24.11b0-cp310-cp310-macosx_11_0_arm64.whl
- Subject digest:
befcf58936963ac330f8acd5e43ddb2b5a863465714d0ede09714d6fbf60ed99
- Sigstore transparency entry: 147632952
- Sigstore integration time:
- Predicate type:
File details
Details for the file supriya-24.11b0-cp39-cp39-win_amd64.whl
.
File metadata
- Download URL: supriya-24.11b0-cp39-cp39-win_amd64.whl
- Upload date:
- Size: 1.2 MB
- Tags: CPython 3.9, Windows x86-64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/5.1.1 CPython/3.12.7
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | abb82b8827100f20454c1a9e6cfd0e05fc7ab99d0f035203f447c6835fdd14d8 |
|
MD5 | 46e9bdb0e9bb033b437225c3d6081d18 |
|
BLAKE2b-256 | 1da7fde104a3cc6d50d8e18cf45fad81571af4eeafd28a65f79baf67d8d92cca |
Provenance
The following attestation bundles were made for supriya-24.11b0-cp39-cp39-win_amd64.whl
:
Publisher:
publish.yml
on supriya-project/supriya
-
Statement type:
https://in-toto.io/Statement/v1
- Predicate type:
https://docs.pypi.org/attestations/publish/v1
- Subject name:
supriya-24.11b0-cp39-cp39-win_amd64.whl
- Subject digest:
abb82b8827100f20454c1a9e6cfd0e05fc7ab99d0f035203f447c6835fdd14d8
- Sigstore transparency entry: 147632967
- Sigstore integration time:
- Predicate type:
File details
Details for the file supriya-24.11b0-cp39-cp39-win32.whl
.
File metadata
- Download URL: supriya-24.11b0-cp39-cp39-win32.whl
- Upload date:
- Size: 1.2 MB
- Tags: CPython 3.9, Windows x86
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/5.1.1 CPython/3.12.7
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 4a6ee9d2158a93389072e5612fec1b82239a91d8baf44ae192c0b08a8a90546a |
|
MD5 | 90831084d7cb7cb786d30da72b093100 |
|
BLAKE2b-256 | 590184f14bc5a75ac1c66bfeade9b02b3f6f12d2ac1ef6037cadb4e9d2733a0f |
Provenance
The following attestation bundles were made for supriya-24.11b0-cp39-cp39-win32.whl
:
Publisher:
publish.yml
on supriya-project/supriya
-
Statement type:
https://in-toto.io/Statement/v1
- Predicate type:
https://docs.pypi.org/attestations/publish/v1
- Subject name:
supriya-24.11b0-cp39-cp39-win32.whl
- Subject digest:
4a6ee9d2158a93389072e5612fec1b82239a91d8baf44ae192c0b08a8a90546a
- Sigstore transparency entry: 147633010
- Sigstore integration time:
- Predicate type:
File details
Details for the file supriya-24.11b0-cp39-cp39-musllinux_1_1_x86_64.whl
.
File metadata
- Download URL: supriya-24.11b0-cp39-cp39-musllinux_1_1_x86_64.whl
- Upload date:
- Size: 2.9 MB
- Tags: CPython 3.9, musllinux: musl 1.1+ x86-64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/5.1.1 CPython/3.12.7
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | fa89c0c8afecc3ec171418be80081a7fa8fcceb08ace920ed704467641a586cd |
|
MD5 | f4abdfc0c011f6a1bc6cdbd665d7e554 |
|
BLAKE2b-256 | 9ffb69b5790c922268ac3a40dd956de4a6d804fdf79867edf8d0d4a7b322d76c |
Provenance
The following attestation bundles were made for supriya-24.11b0-cp39-cp39-musllinux_1_1_x86_64.whl
:
Publisher:
publish.yml
on supriya-project/supriya
-
Statement type:
https://in-toto.io/Statement/v1
- Predicate type:
https://docs.pypi.org/attestations/publish/v1
- Subject name:
supriya-24.11b0-cp39-cp39-musllinux_1_1_x86_64.whl
- Subject digest:
fa89c0c8afecc3ec171418be80081a7fa8fcceb08ace920ed704467641a586cd
- Sigstore transparency entry: 147632958
- Sigstore integration time:
- Predicate type:
File details
Details for the file supriya-24.11b0-cp39-cp39-musllinux_1_1_i686.whl
.
File metadata
- Download URL: supriya-24.11b0-cp39-cp39-musllinux_1_1_i686.whl
- Upload date:
- Size: 2.9 MB
- Tags: CPython 3.9, musllinux: musl 1.1+ i686
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/5.1.1 CPython/3.12.7
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 730effb36d4bd71da63ac2a189420e76bfac1d5e3897137087a7e70c519cf325 |
|
MD5 | 31062e9edb5d44b7875e4b3c34a6293a |
|
BLAKE2b-256 | a3a68c186e705a908ab4934bf3e7486b4edf05d779fd714e1e5263ce4160ee55 |
Provenance
The following attestation bundles were made for supriya-24.11b0-cp39-cp39-musllinux_1_1_i686.whl
:
Publisher:
publish.yml
on supriya-project/supriya
-
Statement type:
https://in-toto.io/Statement/v1
- Predicate type:
https://docs.pypi.org/attestations/publish/v1
- Subject name:
supriya-24.11b0-cp39-cp39-musllinux_1_1_i686.whl
- Subject digest:
730effb36d4bd71da63ac2a189420e76bfac1d5e3897137087a7e70c519cf325
- Sigstore transparency entry: 147632996
- Sigstore integration time:
- Predicate type:
File details
Details for the file supriya-24.11b0-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
.
File metadata
- Download URL: supriya-24.11b0-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
- Upload date:
- Size: 2.4 MB
- Tags: CPython 3.9, manylinux: glibc 2.17+ x86-64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/5.1.1 CPython/3.12.7
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | e4f58a60cfe879aad4b296e45c47f136c14405bd2384badd57eff1ef65c5a057 |
|
MD5 | febd19c4f49605ed740b341f1a100160 |
|
BLAKE2b-256 | f44320d20c373530da8643ac84224a9884fd653bc6b5c00e9e299b8885d74042 |
Provenance
The following attestation bundles were made for supriya-24.11b0-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
:
Publisher:
publish.yml
on supriya-project/supriya
-
Statement type:
https://in-toto.io/Statement/v1
- Predicate type:
https://docs.pypi.org/attestations/publish/v1
- Subject name:
supriya-24.11b0-cp39-cp39-manylinux2014_x86_64.manylinux_2_17_x86_64.whl
- Subject digest:
e4f58a60cfe879aad4b296e45c47f136c14405bd2384badd57eff1ef65c5a057
- Sigstore transparency entry: 147632984
- Sigstore integration time:
- Predicate type:
File details
Details for the file supriya-24.11b0-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl
.
File metadata
- Download URL: supriya-24.11b0-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl
- Upload date:
- Size: 2.3 MB
- Tags: CPython 3.9, manylinux: glibc 2.17+ i686, manylinux: glibc 2.5+ i686
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/5.1.1 CPython/3.12.7
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | a5963fbfd38fb56644e4ee3e8b9b40381f75257de3dad197bbf62f4b6001c21a |
|
MD5 | 123cef1673897482eb2ca180d59b8d49 |
|
BLAKE2b-256 | e4d346d3efd3c44d830ee535dfa79bf5a5695a35b192c6f4d080a20e20ed4a7a |
Provenance
The following attestation bundles were made for supriya-24.11b0-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl
:
Publisher:
publish.yml
on supriya-project/supriya
-
Statement type:
https://in-toto.io/Statement/v1
- Predicate type:
https://docs.pypi.org/attestations/publish/v1
- Subject name:
supriya-24.11b0-cp39-cp39-manylinux1_i686.manylinux2014_i686.manylinux_2_17_i686.manylinux_2_5_i686.whl
- Subject digest:
a5963fbfd38fb56644e4ee3e8b9b40381f75257de3dad197bbf62f4b6001c21a
- Sigstore transparency entry: 147632987
- Sigstore integration time:
- Predicate type:
File details
Details for the file supriya-24.11b0-cp39-cp39-macosx_11_0_arm64.whl
.
File metadata
- Download URL: supriya-24.11b0-cp39-cp39-macosx_11_0_arm64.whl
- Upload date:
- Size: 1.3 MB
- Tags: CPython 3.9, macOS 11.0+ ARM64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/5.1.1 CPython/3.12.7
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 17dd0424a799d34ed8167d98703bb96369941c806e7d352fe081c35f5fb9801c |
|
MD5 | aac4bfbde549419609233b0de73b84c5 |
|
BLAKE2b-256 | 039ebae37537c8df0a527d9474ab35afa3be9e3a43945420299214cdcda1cee5 |
Provenance
The following attestation bundles were made for supriya-24.11b0-cp39-cp39-macosx_11_0_arm64.whl
:
Publisher:
publish.yml
on supriya-project/supriya
-
Statement type:
https://in-toto.io/Statement/v1
- Predicate type:
https://docs.pypi.org/attestations/publish/v1
- Subject name:
supriya-24.11b0-cp39-cp39-macosx_11_0_arm64.whl
- Subject digest:
17dd0424a799d34ed8167d98703bb96369941c806e7d352fe081c35f5fb9801c
- Sigstore transparency entry: 147632961
- Sigstore integration time:
- Predicate type: