Skip to main content

Python bindings for sfizz

Reason this release was yanked:

Missing extension module - use v0.1.1 or later

Project description

pysfizz

Python bindings for sfizz, a sample-based synthesizer for the SFZ virtual instrument format.

Installation

From PyPI

Prebuilt wheels are available for Python 3.9–3.13 on Linux, macOS, and Windows.

pip install pysfizz

From source (development only)

Requires: Git, CMake 3.15+, C++17 compatible compiler, Python 3.9+ with development headers

git clone https://github.com/tiianhk/pysfizz.git
cd pysfizz
git submodule update --init --recursive
pip install .

Example

import pysfizz
import soundfile as sf

# load an instrument
synth = pysfizz.Synth(sample_rate=48000, block_size=1024)
synth.load_sfz_file("path/to/your/sfz/file.sfz")

# print the list of MIDI notes that have SFZ regions
print(synth.playable_keys)

# single note offline systhesis
pitch = 60       # MIDI note number, integer in [0, 127]
vel = 127        # MIDI velocity, integer in [0, 127]
note_dur = 1     # seconds, key pressed at t=0 and released after this duration
render_dur = 2   # seconds, total rendered duration
audio = synth.render_note(pitch, vel, note_dur, render_dur) # np.ndarray of shape (2, num_samples)
sf.write("output.wav", audio.T, synth.get_sample_rate())

Resources

SFZ instruments

License and dependencies

pysfizz is under the BSD 2-Clause License.

It includes the following dependencies as Git submodules under the external/ directory:

  • sfizz — BSD 2-Clause License
  • nanobind — BSD 3-Clause License

Project details


Download files

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

Source Distribution

pysfizz-0.1.0.tar.gz (15.1 MB view details)

Uploaded Source

Built Distributions

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

pysfizz-0.1.0-cp313-cp313-win_amd64.whl (641.2 kB view details)

Uploaded CPython 3.13Windows x86-64

pysfizz-0.1.0-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (990.2 kB view details)

Uploaded CPython 3.13manylinux: glibc 2.17+ x86-64

pysfizz-0.1.0-cp313-cp313-manylinux_2_17_i686.manylinux2014_i686.whl (1.1 MB view details)

Uploaded CPython 3.13manylinux: glibc 2.17+ i686

pysfizz-0.1.0-cp313-cp313-macosx_11_0_arm64.whl (556.8 kB view details)

Uploaded CPython 3.13macOS 11.0+ ARM64

pysfizz-0.1.0-cp313-cp313-macosx_10_13_x86_64.whl (631.6 kB view details)

Uploaded CPython 3.13macOS 10.13+ x86-64

pysfizz-0.1.0-cp312-cp312-win_amd64.whl (641.2 kB view details)

Uploaded CPython 3.12Windows x86-64

pysfizz-0.1.0-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (990.2 kB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ x86-64

pysfizz-0.1.0-cp312-cp312-manylinux_2_17_i686.manylinux2014_i686.whl (1.1 MB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ i686

pysfizz-0.1.0-cp312-cp312-macosx_11_0_arm64.whl (556.8 kB view details)

Uploaded CPython 3.12macOS 11.0+ ARM64

pysfizz-0.1.0-cp312-cp312-macosx_10_13_x86_64.whl (631.7 kB view details)

Uploaded CPython 3.12macOS 10.13+ x86-64

pysfizz-0.1.0-cp311-cp311-win_amd64.whl (641.2 kB view details)

Uploaded CPython 3.11Windows x86-64

pysfizz-0.1.0-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (990.2 kB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ x86-64

pysfizz-0.1.0-cp311-cp311-manylinux_2_17_i686.manylinux2014_i686.whl (1.1 MB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ i686

pysfizz-0.1.0-cp311-cp311-macosx_11_0_arm64.whl (550.4 kB view details)

Uploaded CPython 3.11macOS 11.0+ ARM64

pysfizz-0.1.0-cp311-cp311-macosx_10_13_x86_64.whl (631.6 kB view details)

Uploaded CPython 3.11macOS 10.13+ x86-64

pysfizz-0.1.0-cp310-cp310-win_amd64.whl (641.2 kB view details)

Uploaded CPython 3.10Windows x86-64

pysfizz-0.1.0-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (990.2 kB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ x86-64

pysfizz-0.1.0-cp310-cp310-manylinux_2_17_i686.manylinux2014_i686.whl (1.1 MB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ i686

pysfizz-0.1.0-cp310-cp310-macosx_11_0_arm64.whl (550.4 kB view details)

Uploaded CPython 3.10macOS 11.0+ ARM64

pysfizz-0.1.0-cp310-cp310-macosx_10_13_x86_64.whl (631.6 kB view details)

Uploaded CPython 3.10macOS 10.13+ x86-64

pysfizz-0.1.0-cp39-cp39-win_amd64.whl (641.2 kB view details)

Uploaded CPython 3.9Windows x86-64

pysfizz-0.1.0-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (990.2 kB view details)

Uploaded CPython 3.9manylinux: glibc 2.17+ x86-64

pysfizz-0.1.0-cp39-cp39-manylinux_2_17_i686.manylinux2014_i686.whl (1.1 MB view details)

Uploaded CPython 3.9manylinux: glibc 2.17+ i686

pysfizz-0.1.0-cp39-cp39-macosx_11_0_arm64.whl (556.8 kB view details)

Uploaded CPython 3.9macOS 11.0+ ARM64

pysfizz-0.1.0-cp39-cp39-macosx_10_13_x86_64.whl (631.6 kB view details)

Uploaded CPython 3.9macOS 10.13+ x86-64

File details

Details for the file pysfizz-0.1.0.tar.gz.

File metadata

  • Download URL: pysfizz-0.1.0.tar.gz
  • Upload date:
  • Size: 15.1 MB
  • Tags: Source
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.7

File hashes

Hashes for pysfizz-0.1.0.tar.gz
Algorithm Hash digest
SHA256 339e60c2dff49c246224373aa12251ce135ec4b6f6283692f6193ca137284278
MD5 f54fb5ee4ad2fc7d159fb5209a96a212
BLAKE2b-256 ff6f807fce963da908466a0dbce62dfa3014e554db5045e5e68f6138666d7d36

See more details on using hashes here.

Provenance

The following attestation bundles were made for pysfizz-0.1.0.tar.gz:

Publisher: build_wheels.yml on tiianhk/pysfizz

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

File details

Details for the file pysfizz-0.1.0-cp313-cp313-win_amd64.whl.

File metadata

  • Download URL: pysfizz-0.1.0-cp313-cp313-win_amd64.whl
  • Upload date:
  • Size: 641.2 kB
  • 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 pysfizz-0.1.0-cp313-cp313-win_amd64.whl
Algorithm Hash digest
SHA256 4579d908124d9b64009f1099b8940576e5a75a58b1c04615e6c3cec17aada57e
MD5 8af3d4135500bbe71b104c1ca3ad71e0
BLAKE2b-256 d5b9f5f1fa0244c6a832c13a8b5d0833258b74b1d2df6f33b0fac1b2b154b717

See more details on using hashes here.

Provenance

The following attestation bundles were made for pysfizz-0.1.0-cp313-cp313-win_amd64.whl:

Publisher: build_wheels.yml on tiianhk/pysfizz

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

File details

Details for the file pysfizz-0.1.0-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for pysfizz-0.1.0-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 589128f202cfdd772e10f11d4ca8afb44ce7c83e8fae41683b077e0050d560f9
MD5 be08643a85eebcd9804c57d51f6c898c
BLAKE2b-256 ed03c41b20002b4d7852ec0dec69abcfd25816ebd45fcb00880df6624f13dfe4

See more details on using hashes here.

Provenance

The following attestation bundles were made for pysfizz-0.1.0-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl:

Publisher: build_wheels.yml on tiianhk/pysfizz

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

File details

Details for the file pysfizz-0.1.0-cp313-cp313-manylinux_2_17_i686.manylinux2014_i686.whl.

File metadata

File hashes

Hashes for pysfizz-0.1.0-cp313-cp313-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 ce0736866cfeeedb5e05d76ce61544ebc7d166053fbb666edb6f195f04e7a846
MD5 df7165c43914e936a728c66ec8e113e1
BLAKE2b-256 b925a7c4849fc166ba686776d770ad22753c89a394e0d8817dbacb80d353e08c

See more details on using hashes here.

Provenance

The following attestation bundles were made for pysfizz-0.1.0-cp313-cp313-manylinux_2_17_i686.manylinux2014_i686.whl:

Publisher: build_wheels.yml on tiianhk/pysfizz

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

File details

Details for the file pysfizz-0.1.0-cp313-cp313-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for pysfizz-0.1.0-cp313-cp313-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 39e912b988cc7c616b0d0aa1b1296ecd7215f8676b91fc547db8676ac1a74f3b
MD5 df8ef31594765bca614b541cad1e8956
BLAKE2b-256 59bbadfad8c69d505f48eac090d8c100f912a482b614fc356cfec4f7de7a4a79

See more details on using hashes here.

Provenance

The following attestation bundles were made for pysfizz-0.1.0-cp313-cp313-macosx_11_0_arm64.whl:

Publisher: build_wheels.yml on tiianhk/pysfizz

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

File details

Details for the file pysfizz-0.1.0-cp313-cp313-macosx_10_13_x86_64.whl.

File metadata

File hashes

Hashes for pysfizz-0.1.0-cp313-cp313-macosx_10_13_x86_64.whl
Algorithm Hash digest
SHA256 77541cc890a042c8bbfcf4fed1af407aa12e340e701ffc78bd107281f22c5ced
MD5 333c75897231bed814a3b57a139da4b5
BLAKE2b-256 64348c96526d15510b4d72606a3ea4de2eb412c1b8b5dc8b4f6c270198a9947b

See more details on using hashes here.

Provenance

The following attestation bundles were made for pysfizz-0.1.0-cp313-cp313-macosx_10_13_x86_64.whl:

Publisher: build_wheels.yml on tiianhk/pysfizz

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

File details

Details for the file pysfizz-0.1.0-cp312-cp312-win_amd64.whl.

File metadata

  • Download URL: pysfizz-0.1.0-cp312-cp312-win_amd64.whl
  • Upload date:
  • Size: 641.2 kB
  • 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 pysfizz-0.1.0-cp312-cp312-win_amd64.whl
Algorithm Hash digest
SHA256 86fc7f7cd6ea7f26ff5aa6bf99121938867f5d22a590f60c1a9799bacee064c5
MD5 537e05fa7c75c8540adbc5bf9a54e6b1
BLAKE2b-256 e8e26525e00b540ca9daa85dacf7ea56bbc3689e1372f9abde5edbb1c9113a85

See more details on using hashes here.

Provenance

The following attestation bundles were made for pysfizz-0.1.0-cp312-cp312-win_amd64.whl:

Publisher: build_wheels.yml on tiianhk/pysfizz

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

File details

Details for the file pysfizz-0.1.0-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for pysfizz-0.1.0-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 5213a0b0f562b45a909df1ce894c7a6980aca0e020c6616628386e3827834530
MD5 afd9013f9a912789fa34d2a11f8c0cab
BLAKE2b-256 a289587b73d16bdf2ec027aa17a9f2080d309f94fa9c51c1413f6e58fa39bb9f

See more details on using hashes here.

Provenance

The following attestation bundles were made for pysfizz-0.1.0-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl:

Publisher: build_wheels.yml on tiianhk/pysfizz

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

File details

Details for the file pysfizz-0.1.0-cp312-cp312-manylinux_2_17_i686.manylinux2014_i686.whl.

File metadata

File hashes

Hashes for pysfizz-0.1.0-cp312-cp312-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 621d484e5225fe37ecbf432fe9f5f261c109d2b871cbba6ceb79243f788e5bb1
MD5 15b3971cf7cedaa7791ea4710f16bfa8
BLAKE2b-256 b4db4258964b8060f7504f40fb905e3f8225f137b5ee7b9cf5d328d878a0d24f

See more details on using hashes here.

Provenance

The following attestation bundles were made for pysfizz-0.1.0-cp312-cp312-manylinux_2_17_i686.manylinux2014_i686.whl:

Publisher: build_wheels.yml on tiianhk/pysfizz

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

File details

Details for the file pysfizz-0.1.0-cp312-cp312-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for pysfizz-0.1.0-cp312-cp312-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 0aafcff928902caec99fca42b28c114460129e245c1f1de10ccae5fd1af83f5c
MD5 ed92fedd0e951776212a5f9db26fc8f5
BLAKE2b-256 f765b4046b82afcd344f229cdfe58bc562c7b8f825cb323aca3115e7902a525e

See more details on using hashes here.

Provenance

The following attestation bundles were made for pysfizz-0.1.0-cp312-cp312-macosx_11_0_arm64.whl:

Publisher: build_wheels.yml on tiianhk/pysfizz

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

File details

Details for the file pysfizz-0.1.0-cp312-cp312-macosx_10_13_x86_64.whl.

File metadata

File hashes

Hashes for pysfizz-0.1.0-cp312-cp312-macosx_10_13_x86_64.whl
Algorithm Hash digest
SHA256 662ab2fc81282509c0866fc8af303b88a5f3d98713305c7ee9b9cea2b1fe20c7
MD5 81ffa173aa3429745f82f932c1fe6f2a
BLAKE2b-256 6aaffca153aacfc4a96d47a056fcaf2e5ff949b1f0c033de619a1c49cc623115

See more details on using hashes here.

Provenance

The following attestation bundles were made for pysfizz-0.1.0-cp312-cp312-macosx_10_13_x86_64.whl:

Publisher: build_wheels.yml on tiianhk/pysfizz

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

File details

Details for the file pysfizz-0.1.0-cp311-cp311-win_amd64.whl.

File metadata

  • Download URL: pysfizz-0.1.0-cp311-cp311-win_amd64.whl
  • Upload date:
  • Size: 641.2 kB
  • 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 pysfizz-0.1.0-cp311-cp311-win_amd64.whl
Algorithm Hash digest
SHA256 68918f1a9877862172427df98c927298990f2ed758117794e75ceb250452d139
MD5 3722e8c3cc7d5060f3e3e794e1a9780e
BLAKE2b-256 e9cbe407d02b826a0b344aba85c0943a9377e96d7e24d64b57ca3c76cbf6ff68

See more details on using hashes here.

Provenance

The following attestation bundles were made for pysfizz-0.1.0-cp311-cp311-win_amd64.whl:

Publisher: build_wheels.yml on tiianhk/pysfizz

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

File details

Details for the file pysfizz-0.1.0-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for pysfizz-0.1.0-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 be67d09c9d39a9ffbcb8196bf59ee27e38f8b0fc3f1e188aaac9ed67e519b3cd
MD5 dcd5ab039c16399dad5caf1a92247aa4
BLAKE2b-256 a72e2092b4618cead8f24f95197d4d74f3b41418380f1b2bff264fe1df5750a1

See more details on using hashes here.

Provenance

The following attestation bundles were made for pysfizz-0.1.0-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl:

Publisher: build_wheels.yml on tiianhk/pysfizz

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

File details

Details for the file pysfizz-0.1.0-cp311-cp311-manylinux_2_17_i686.manylinux2014_i686.whl.

File metadata

File hashes

Hashes for pysfizz-0.1.0-cp311-cp311-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 45dcbb6318d9646b151d8cd21df652c832904e1b7a049df94091421432969bd0
MD5 00f1cf60784caff43ee38273b5df6800
BLAKE2b-256 e25ca3dbd7ef16bfcaa96895937c265eadbb84d0737c969d91f510ae68da609b

See more details on using hashes here.

Provenance

The following attestation bundles were made for pysfizz-0.1.0-cp311-cp311-manylinux_2_17_i686.manylinux2014_i686.whl:

Publisher: build_wheels.yml on tiianhk/pysfizz

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

File details

Details for the file pysfizz-0.1.0-cp311-cp311-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for pysfizz-0.1.0-cp311-cp311-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 847b88328728037ee26ca488f241f2f5f57c2242653e90ac3f69b91a05ba9f59
MD5 b5cb1fa56d3dea43ce48d3331338f229
BLAKE2b-256 58f76f85dc68883f75f144a6bd8a57be10186996924e88d54fd84afbae24250a

See more details on using hashes here.

Provenance

The following attestation bundles were made for pysfizz-0.1.0-cp311-cp311-macosx_11_0_arm64.whl:

Publisher: build_wheels.yml on tiianhk/pysfizz

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

File details

Details for the file pysfizz-0.1.0-cp311-cp311-macosx_10_13_x86_64.whl.

File metadata

File hashes

Hashes for pysfizz-0.1.0-cp311-cp311-macosx_10_13_x86_64.whl
Algorithm Hash digest
SHA256 6ba05a5524241fcac63229d6f5c779923a57f33fa0e1144b291ad7e341b7d01c
MD5 e3f0a26e020bacc1a42ed6897757c243
BLAKE2b-256 1df9997d8f715631dc44ccb33e275b6584a19610a0fe5b936082cfb97b643476

See more details on using hashes here.

Provenance

The following attestation bundles were made for pysfizz-0.1.0-cp311-cp311-macosx_10_13_x86_64.whl:

Publisher: build_wheels.yml on tiianhk/pysfizz

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

File details

Details for the file pysfizz-0.1.0-cp310-cp310-win_amd64.whl.

File metadata

  • Download URL: pysfizz-0.1.0-cp310-cp310-win_amd64.whl
  • Upload date:
  • Size: 641.2 kB
  • 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 pysfizz-0.1.0-cp310-cp310-win_amd64.whl
Algorithm Hash digest
SHA256 a4951876890bb735163b4a9a32d23db67cc3914e09c9727b620b6af30892c68c
MD5 8700df97bdf770d0715be1337d3ace56
BLAKE2b-256 2330e7ac44ea440cb9333feaed52276483c9b1f11421803af14ec97bf738a981

See more details on using hashes here.

Provenance

The following attestation bundles were made for pysfizz-0.1.0-cp310-cp310-win_amd64.whl:

Publisher: build_wheels.yml on tiianhk/pysfizz

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

File details

Details for the file pysfizz-0.1.0-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for pysfizz-0.1.0-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 b93b7164c6a3e4aa4f6652314509e497e1e0d66aefe55796a6f33238ace5710e
MD5 68b4611a350e23aad5b3583141ad216e
BLAKE2b-256 be07a4a000fce6df5b38903c00903ee9b1c2fa1bbc6f37a99a94c5afe00eb075

See more details on using hashes here.

Provenance

The following attestation bundles were made for pysfizz-0.1.0-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl:

Publisher: build_wheels.yml on tiianhk/pysfizz

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

File details

Details for the file pysfizz-0.1.0-cp310-cp310-manylinux_2_17_i686.manylinux2014_i686.whl.

File metadata

File hashes

Hashes for pysfizz-0.1.0-cp310-cp310-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 df14a9da393d8634eb8c871f0f8235e2b578299d65f6f797eaf6656803b9db9f
MD5 20063ffd87b2e0ea296057ab23db9657
BLAKE2b-256 2163e13191a5a0b3c8844c8595b8d0e5609e9bbb5e280d7654b2a9ded3bdbeb6

See more details on using hashes here.

Provenance

The following attestation bundles were made for pysfizz-0.1.0-cp310-cp310-manylinux_2_17_i686.manylinux2014_i686.whl:

Publisher: build_wheels.yml on tiianhk/pysfizz

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

File details

Details for the file pysfizz-0.1.0-cp310-cp310-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for pysfizz-0.1.0-cp310-cp310-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 8c0a43c83a95b9cc94d1d48f9e36e8be8ec8fb902539fdcb2c6323b4dcf4ef4f
MD5 8ba2780d8f4b48b256f4b105ef154498
BLAKE2b-256 2f842352062a757de4a1fe70dc8de7c438378e54d3b78279d92021b22498c2ce

See more details on using hashes here.

Provenance

The following attestation bundles were made for pysfizz-0.1.0-cp310-cp310-macosx_11_0_arm64.whl:

Publisher: build_wheels.yml on tiianhk/pysfizz

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

File details

Details for the file pysfizz-0.1.0-cp310-cp310-macosx_10_13_x86_64.whl.

File metadata

File hashes

Hashes for pysfizz-0.1.0-cp310-cp310-macosx_10_13_x86_64.whl
Algorithm Hash digest
SHA256 1be8c54c42a9d72b583152416b2a3c0aaa80c3ec888e90ec201be440c9c2fd36
MD5 ad3a1531faae322eebafa5765a1fdc36
BLAKE2b-256 6a53b8f8c39edcf0b72480e1a93b694ddadbfc0bba44bdb6a0f19f24a891a89f

See more details on using hashes here.

Provenance

The following attestation bundles were made for pysfizz-0.1.0-cp310-cp310-macosx_10_13_x86_64.whl:

Publisher: build_wheels.yml on tiianhk/pysfizz

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

File details

Details for the file pysfizz-0.1.0-cp39-cp39-win_amd64.whl.

File metadata

  • Download URL: pysfizz-0.1.0-cp39-cp39-win_amd64.whl
  • Upload date:
  • Size: 641.2 kB
  • Tags: CPython 3.9, Windows x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.7

File hashes

Hashes for pysfizz-0.1.0-cp39-cp39-win_amd64.whl
Algorithm Hash digest
SHA256 2619dab85bd7396279a6caab38739b34bf8e1b155c69ecd334967bf520065c25
MD5 8518e6c7d11a5cadf4b63c203ae2858b
BLAKE2b-256 2190c036c08ed884eb86ffb5fa53221ca90ebcfe88428a7192dc5ccaade21cdd

See more details on using hashes here.

Provenance

The following attestation bundles were made for pysfizz-0.1.0-cp39-cp39-win_amd64.whl:

Publisher: build_wheels.yml on tiianhk/pysfizz

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

File details

Details for the file pysfizz-0.1.0-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for pysfizz-0.1.0-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 db379fef65e6b5ed47b7e9f16435778617a1e968ab7f83441db3aae59a329ddc
MD5 05d1409aecdbe29748d548eda04cee4a
BLAKE2b-256 2dcf8a5c43266b5216d825599c047d4b841b55a8ac2adb736c8b4bea02cc92e6

See more details on using hashes here.

Provenance

The following attestation bundles were made for pysfizz-0.1.0-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl:

Publisher: build_wheels.yml on tiianhk/pysfizz

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

File details

Details for the file pysfizz-0.1.0-cp39-cp39-manylinux_2_17_i686.manylinux2014_i686.whl.

File metadata

File hashes

Hashes for pysfizz-0.1.0-cp39-cp39-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 5a597fca650613f1223885b95ac87ac7fff1df53a31aba9703b2779c79a03ac8
MD5 1e0019d2b85990a924fb567490318abb
BLAKE2b-256 a94a38353c7d5682e213b9b5ba8c09c48f82cf58f68bd9ffb16cd41f80e22167

See more details on using hashes here.

Provenance

The following attestation bundles were made for pysfizz-0.1.0-cp39-cp39-manylinux_2_17_i686.manylinux2014_i686.whl:

Publisher: build_wheels.yml on tiianhk/pysfizz

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

File details

Details for the file pysfizz-0.1.0-cp39-cp39-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for pysfizz-0.1.0-cp39-cp39-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 a0573d5c697f6193df7aa585aa4560fd9420358a0bad460063ba48b1f445e61f
MD5 bf030270e9e09785d11941cde729183e
BLAKE2b-256 ef17c398e64f81e9b82e2ad675df0c2f688c07ed7294ad999bc62e0a28959f20

See more details on using hashes here.

Provenance

The following attestation bundles were made for pysfizz-0.1.0-cp39-cp39-macosx_11_0_arm64.whl:

Publisher: build_wheels.yml on tiianhk/pysfizz

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

File details

Details for the file pysfizz-0.1.0-cp39-cp39-macosx_10_13_x86_64.whl.

File metadata

File hashes

Hashes for pysfizz-0.1.0-cp39-cp39-macosx_10_13_x86_64.whl
Algorithm Hash digest
SHA256 18854ffeeb8939775d567a42923e993a91d5fe4ca70dd099f2580b6c212ee7e3
MD5 753a1174ffa592c6dcffe3e4f4d8acd3
BLAKE2b-256 442ff5d75e44cb10d2e0361532c619a38a50901d576484532e047a283fb6f257

See more details on using hashes here.

Provenance

The following attestation bundles were made for pysfizz-0.1.0-cp39-cp39-macosx_10_13_x86_64.whl:

Publisher: build_wheels.yml on tiianhk/pysfizz

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