pysfizz


Namepysfizz JSON
Version 0.1.1 PyPI version JSON
download
home_pageNone
SummaryPython bindings for sfizz
upload_time2025-10-08 00:16:43
maintainerNone
docs_urlNone
authorNone
requires_python>=3.9
licenseBSD 2-Clause License Copyright (c) 2025, Haokun Tian Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are met: 1. Redistributions of source code must retain the above copyright notice, this list of conditions and the following disclaimer. 2. Redistributions in binary form must reproduce the above copyright notice, this list of conditions and the following disclaimer in the documentation and/or other materials provided with the distribution. THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
keywords audio synthesis sfz sampler music sfizz
VCS
bugtrack_url
requirements No requirements were recorded.
Travis-CI No Travis.
coveralls test coverage No coveralls.
            # pysfizz
Python bindings for [sfizz](https://github.com/sfztools/sfizz), a sample-based synthesizer for the [SFZ](https://sfzformat.com) virtual instrument format.

## Installation
### From PyPI
Prebuilt wheels are available for Python 3.9–3.13 on Linux, macOS, and Windows.
```bash
pip install pysfizz
```
### From source (development only)

**Requires:** Git, CMake 3.15+, C++17 compatible compiler, Python 3.9+ with development headers
```bash
git clone https://github.com/tiianhk/pysfizz.git
cd pysfizz
git submodule update --init --recursive
pip install .
```

## Example
```python
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](https://sfzinstruments.github.io)

## License and dependencies

`pysfizz` is under the [BSD 2-Clause License](./LICENSE).

It includes the following dependencies as Git submodules under the `external/` directory:
- [sfizz](https://github.com/sfztools/sfizz) — BSD 2-Clause License  
- [nanobind](https://github.com/wjakob/nanobind) — BSD 3-Clause License

            

Raw data

            {
    "_id": null,
    "home_page": null,
    "name": "pysfizz",
    "maintainer": null,
    "docs_url": null,
    "requires_python": ">=3.9",
    "maintainer_email": null,
    "keywords": "audio, synthesis, sfz, sampler, music, sfizz",
    "author": null,
    "author_email": "Haokun Tian <tianhaokun258@gmail.com>",
    "download_url": "https://files.pythonhosted.org/packages/fa/67/58f48283cd227a3c348e71ef2eb563c44c6d9f6027a04e1afd5490a559ff/pysfizz-0.1.1.tar.gz",
    "platform": null,
    "description": "# pysfizz\nPython bindings for [sfizz](https://github.com/sfztools/sfizz), a sample-based synthesizer for the [SFZ](https://sfzformat.com) virtual instrument format.\n\n## Installation\n### From PyPI\nPrebuilt wheels are available for Python 3.9\u20133.13 on Linux, macOS, and Windows.\n```bash\npip install pysfizz\n```\n### From source (development only)\n\n**Requires:** Git, CMake 3.15+, C++17 compatible compiler, Python 3.9+ with development headers\n```bash\ngit clone https://github.com/tiianhk/pysfizz.git\ncd pysfizz\ngit submodule update --init --recursive\npip install .\n```\n\n## Example\n```python\nimport pysfizz\nimport soundfile as sf\n\n# load an instrument\nsynth = pysfizz.Synth(sample_rate=48000, block_size=1024)\nsynth.load_sfz_file(\"path/to/your/sfz/file.sfz\")\n\n# print the list of MIDI notes that have SFZ regions\nprint(synth.playable_keys)\n\n# single note offline systhesis\npitch = 60       # MIDI note number, integer in [0, 127]\nvel = 127        # MIDI velocity, integer in [0, 127]\nnote_dur = 1     # seconds, key pressed at t=0 and released after this duration\nrender_dur = 2   # seconds, total rendered duration\naudio = synth.render_note(pitch, vel, note_dur, render_dur) # np.ndarray of shape (2, num_samples)\nsf.write(\"output.wav\", audio.T, synth.get_sample_rate())\n```\n\n## Resources\n[SFZ instruments](https://sfzinstruments.github.io)\n\n## License and dependencies\n\n`pysfizz` is under the [BSD 2-Clause License](./LICENSE).\n\nIt includes the following dependencies as Git submodules under the `external/` directory:\n- [sfizz](https://github.com/sfztools/sfizz) \u2014 BSD 2-Clause License  \n- [nanobind](https://github.com/wjakob/nanobind) \u2014 BSD 3-Clause License\n",
    "bugtrack_url": null,
    "license": "BSD 2-Clause License\n         \n         Copyright (c) 2025, Haokun Tian\n         \n         Redistribution and use in source and binary forms, with or without\n         modification, are permitted provided that the following conditions are met:\n         \n         1. Redistributions of source code must retain the above copyright notice, this\n            list of conditions and the following disclaimer.\n         \n         2. Redistributions in binary form must reproduce the above copyright notice,\n            this list of conditions and the following disclaimer in the documentation\n            and/or other materials provided with the distribution.\n         \n         THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS \"AS IS\"\n         AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE\n         IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE\n         DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE\n         FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL\n         DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR\n         SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER\n         CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY,\n         OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE\n         OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.\n         ",
    "summary": "Python bindings for sfizz",
    "version": "0.1.1",
    "project_urls": {
        "Source": "https://github.com/tiianhk/pysfizz",
        "Tracker": "https://github.com/tiianhk/pysfizz/issues"
    },
    "split_keywords": [
        "audio",
        " synthesis",
        " sfz",
        " sampler",
        " music",
        " sfizz"
    ],
    "urls": [
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "0e70ccbdf485aad5f1c048402e748a9f9c8c7075754b41b6ed59a52044f805de",
                "md5": "638c3a1ed65310d4339a67664e1e681f",
                "sha256": "d3189ce1c1389a590582c7c4a014f87ba1003f786dd3199610b909e3eee25501"
            },
            "downloads": -1,
            "filename": "pysfizz-0.1.1-cp310-cp310-macosx_10_13_x86_64.whl",
            "has_sig": false,
            "md5_digest": "638c3a1ed65310d4339a67664e1e681f",
            "packagetype": "bdist_wheel",
            "python_version": "cp310",
            "requires_python": ">=3.9",
            "size": 1290497,
            "upload_time": "2025-10-08T00:16:04",
            "upload_time_iso_8601": "2025-10-08T00:16:04.547574Z",
            "url": "https://files.pythonhosted.org/packages/0e/70/ccbdf485aad5f1c048402e748a9f9c8c7075754b41b6ed59a52044f805de/pysfizz-0.1.1-cp310-cp310-macosx_10_13_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "85220cff13cfa4c7729878292f1c9fb19c9f7a34750799176368f7f6521a205d",
                "md5": "f0e76c4fbc9a327d9271b95bd06e5bf0",
                "sha256": "5938ecc2b7ad92aaf20509a96b46b54635615068e1b453ade848e63c2d57a681"
            },
            "downloads": -1,
            "filename": "pysfizz-0.1.1-cp310-cp310-macosx_11_0_arm64.whl",
            "has_sig": false,
            "md5_digest": "f0e76c4fbc9a327d9271b95bd06e5bf0",
            "packagetype": "bdist_wheel",
            "python_version": "cp310",
            "requires_python": ">=3.9",
            "size": 1136195,
            "upload_time": "2025-10-08T00:16:06",
            "upload_time_iso_8601": "2025-10-08T00:16:06.339035Z",
            "url": "https://files.pythonhosted.org/packages/85/22/0cff13cfa4c7729878292f1c9fb19c9f7a34750799176368f7f6521a205d/pysfizz-0.1.1-cp310-cp310-macosx_11_0_arm64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "80345207c10912e2c7662173252a13f7340e0731c51e605dc25ac441ed6a3006",
                "md5": "725f8fc5b00c8a4d2d384b633f240771",
                "sha256": "7e675949279cb6542669c8772faec6e14859a9689b7634638f5ddf02eaf3d856"
            },
            "downloads": -1,
            "filename": "pysfizz-0.1.1-cp310-cp310-manylinux_2_17_i686.manylinux2014_i686.whl",
            "has_sig": false,
            "md5_digest": "725f8fc5b00c8a4d2d384b633f240771",
            "packagetype": "bdist_wheel",
            "python_version": "cp310",
            "requires_python": ">=3.9",
            "size": 2224894,
            "upload_time": "2025-10-08T00:16:08",
            "upload_time_iso_8601": "2025-10-08T00:16:08.108312Z",
            "url": "https://files.pythonhosted.org/packages/80/34/5207c10912e2c7662173252a13f7340e0731c51e605dc25ac441ed6a3006/pysfizz-0.1.1-cp310-cp310-manylinux_2_17_i686.manylinux2014_i686.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "9379f50c34f1eb507e75e3b5a3a30bc47c6abe68aa2d2d10297992f838673e3e",
                "md5": "95206eed69b1b78e34538a18b7983f0e",
                "sha256": "570241320e0d69a84fd52b1847f994a060dfc872d8d1196e439806e5c72837c8"
            },
            "downloads": -1,
            "filename": "pysfizz-0.1.1-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "has_sig": false,
            "md5_digest": "95206eed69b1b78e34538a18b7983f0e",
            "packagetype": "bdist_wheel",
            "python_version": "cp310",
            "requires_python": ">=3.9",
            "size": 1995341,
            "upload_time": "2025-10-08T00:16:10",
            "upload_time_iso_8601": "2025-10-08T00:16:10.231295Z",
            "url": "https://files.pythonhosted.org/packages/93/79/f50c34f1eb507e75e3b5a3a30bc47c6abe68aa2d2d10297992f838673e3e/pysfizz-0.1.1-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "d868dfced1e5c7c4463eae56fc8c8065d8edb16fb8f7d432d7828a6558723b06",
                "md5": "cb9dd479fd5758235982aa7597a9ece7",
                "sha256": "281daf6c7d81b7330da3fc4ef9d7d4a1015361cb209073df1a5cd0265ffa1a0c"
            },
            "downloads": -1,
            "filename": "pysfizz-0.1.1-cp310-cp310-win_amd64.whl",
            "has_sig": false,
            "md5_digest": "cb9dd479fd5758235982aa7597a9ece7",
            "packagetype": "bdist_wheel",
            "python_version": "cp310",
            "requires_python": ">=3.9",
            "size": 1243117,
            "upload_time": "2025-10-08T00:16:12",
            "upload_time_iso_8601": "2025-10-08T00:16:12.561883Z",
            "url": "https://files.pythonhosted.org/packages/d8/68/dfced1e5c7c4463eae56fc8c8065d8edb16fb8f7d432d7828a6558723b06/pysfizz-0.1.1-cp310-cp310-win_amd64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "dcaaaeb81e393fc3745f76c211e8d1d2519b414ba61cd2219aeb4e35c6db0f54",
                "md5": "bba445683c25ab5d0d6d3a5ac0d0e29f",
                "sha256": "f04cd5cd6107d7219e92b8da1479d244ca20bdc3b9f5496c3d8b72c71c1cb61c"
            },
            "downloads": -1,
            "filename": "pysfizz-0.1.1-cp311-cp311-macosx_10_13_x86_64.whl",
            "has_sig": false,
            "md5_digest": "bba445683c25ab5d0d6d3a5ac0d0e29f",
            "packagetype": "bdist_wheel",
            "python_version": "cp311",
            "requires_python": ">=3.9",
            "size": 1290369,
            "upload_time": "2025-10-08T00:16:13",
            "upload_time_iso_8601": "2025-10-08T00:16:13.817729Z",
            "url": "https://files.pythonhosted.org/packages/dc/aa/aeb81e393fc3745f76c211e8d1d2519b414ba61cd2219aeb4e35c6db0f54/pysfizz-0.1.1-cp311-cp311-macosx_10_13_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "6db2263e07b1d95bb24002a290a69dd099dd6319adb6f849dec941dbba669fa9",
                "md5": "e102f7b433355108268849a1f355b6a9",
                "sha256": "b4a9bfdb3fdb269031ae04db64baee5f8a2e47d3b49d6fc070c490db92a54620"
            },
            "downloads": -1,
            "filename": "pysfizz-0.1.1-cp311-cp311-macosx_11_0_arm64.whl",
            "has_sig": false,
            "md5_digest": "e102f7b433355108268849a1f355b6a9",
            "packagetype": "bdist_wheel",
            "python_version": "cp311",
            "requires_python": ">=3.9",
            "size": 1135972,
            "upload_time": "2025-10-08T00:16:15",
            "upload_time_iso_8601": "2025-10-08T00:16:15.480591Z",
            "url": "https://files.pythonhosted.org/packages/6d/b2/263e07b1d95bb24002a290a69dd099dd6319adb6f849dec941dbba669fa9/pysfizz-0.1.1-cp311-cp311-macosx_11_0_arm64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "2f0e7fb4c811973888d779959b477f574fc731caef9fb4945a84dc76b5b3ab78",
                "md5": "e7ac97977fe4d0a73f956a0c36219e7a",
                "sha256": "cff96198529a857671c85264fb224c04a3f24c0576f7ad08233ad4bcd7c864be"
            },
            "downloads": -1,
            "filename": "pysfizz-0.1.1-cp311-cp311-manylinux_2_17_i686.manylinux2014_i686.whl",
            "has_sig": false,
            "md5_digest": "e7ac97977fe4d0a73f956a0c36219e7a",
            "packagetype": "bdist_wheel",
            "python_version": "cp311",
            "requires_python": ">=3.9",
            "size": 2224717,
            "upload_time": "2025-10-08T00:16:17",
            "upload_time_iso_8601": "2025-10-08T00:16:17.170530Z",
            "url": "https://files.pythonhosted.org/packages/2f/0e/7fb4c811973888d779959b477f574fc731caef9fb4945a84dc76b5b3ab78/pysfizz-0.1.1-cp311-cp311-manylinux_2_17_i686.manylinux2014_i686.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "79e43d52fe3294837b565ec55aa95751e81576f832ce2be26a43d45a11b90728",
                "md5": "4c36a00360bfc290b5ba93909e12c1c4",
                "sha256": "33849e056e6689efc4d6d0bfb5015c8b1f803e878dd938a91aa1c125e77fa870"
            },
            "downloads": -1,
            "filename": "pysfizz-0.1.1-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "has_sig": false,
            "md5_digest": "4c36a00360bfc290b5ba93909e12c1c4",
            "packagetype": "bdist_wheel",
            "python_version": "cp311",
            "requires_python": ">=3.9",
            "size": 1995169,
            "upload_time": "2025-10-08T00:16:19",
            "upload_time_iso_8601": "2025-10-08T00:16:19.060430Z",
            "url": "https://files.pythonhosted.org/packages/79/e4/3d52fe3294837b565ec55aa95751e81576f832ce2be26a43d45a11b90728/pysfizz-0.1.1-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "978dd6d2a05a5aaf8d6bccd97143fbe069f24023d396f1089f6e8282d6efb19e",
                "md5": "39eee923fb504f738e68141ec4c7028a",
                "sha256": "83558c66574b8846bbbc6a7026db4c3c5d55ecd2401443c4a6882c8c0af69a30"
            },
            "downloads": -1,
            "filename": "pysfizz-0.1.1-cp311-cp311-win_amd64.whl",
            "has_sig": false,
            "md5_digest": "39eee923fb504f738e68141ec4c7028a",
            "packagetype": "bdist_wheel",
            "python_version": "cp311",
            "requires_python": ">=3.9",
            "size": 1242836,
            "upload_time": "2025-10-08T00:16:20",
            "upload_time_iso_8601": "2025-10-08T00:16:20.299324Z",
            "url": "https://files.pythonhosted.org/packages/97/8d/d6d2a05a5aaf8d6bccd97143fbe069f24023d396f1089f6e8282d6efb19e/pysfizz-0.1.1-cp311-cp311-win_amd64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "6b39ae65ed9a73d78fbcae203301c30f4fa4b48f68f4091a10e1f13d0d56e10f",
                "md5": "3b04a6af2d87129e764b214b9eda3638",
                "sha256": "4602ea255d95490c3f0f33d88cabf85223ffcbfc60c997ab1706ce5429a9e469"
            },
            "downloads": -1,
            "filename": "pysfizz-0.1.1-cp312-cp312-macosx_10_13_x86_64.whl",
            "has_sig": false,
            "md5_digest": "3b04a6af2d87129e764b214b9eda3638",
            "packagetype": "bdist_wheel",
            "python_version": "cp312",
            "requires_python": ">=3.9",
            "size": 1289784,
            "upload_time": "2025-10-08T00:16:21",
            "upload_time_iso_8601": "2025-10-08T00:16:21.484212Z",
            "url": "https://files.pythonhosted.org/packages/6b/39/ae65ed9a73d78fbcae203301c30f4fa4b48f68f4091a10e1f13d0d56e10f/pysfizz-0.1.1-cp312-cp312-macosx_10_13_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "e1c2524d777ca3756b04b593b27059bfa3df57731dc024a529dc2e94d2d6f52b",
                "md5": "180129df5d7e174dfc0800c8a56af4da",
                "sha256": "70ee48865950abca795ac6e9909bb7ad253479e82eb46f3b91bdb70adf5cf410"
            },
            "downloads": -1,
            "filename": "pysfizz-0.1.1-cp312-cp312-macosx_11_0_arm64.whl",
            "has_sig": false,
            "md5_digest": "180129df5d7e174dfc0800c8a56af4da",
            "packagetype": "bdist_wheel",
            "python_version": "cp312",
            "requires_python": ">=3.9",
            "size": 1134278,
            "upload_time": "2025-10-08T00:16:22",
            "upload_time_iso_8601": "2025-10-08T00:16:22.779531Z",
            "url": "https://files.pythonhosted.org/packages/e1/c2/524d777ca3756b04b593b27059bfa3df57731dc024a529dc2e94d2d6f52b/pysfizz-0.1.1-cp312-cp312-macosx_11_0_arm64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "97c62f1317b2693767ea969987485decbfbb2c3a90926391972ae107fd423e03",
                "md5": "078f2fc9b38b9436ab723c1788ffb633",
                "sha256": "7cd65222ad5f26718999190482fb20d42d274226b8ca47ddd58009c654aace97"
            },
            "downloads": -1,
            "filename": "pysfizz-0.1.1-cp312-cp312-manylinux_2_17_i686.manylinux2014_i686.whl",
            "has_sig": false,
            "md5_digest": "078f2fc9b38b9436ab723c1788ffb633",
            "packagetype": "bdist_wheel",
            "python_version": "cp312",
            "requires_python": ">=3.9",
            "size": 2223745,
            "upload_time": "2025-10-08T00:16:24",
            "upload_time_iso_8601": "2025-10-08T00:16:24.412820Z",
            "url": "https://files.pythonhosted.org/packages/97/c6/2f1317b2693767ea969987485decbfbb2c3a90926391972ae107fd423e03/pysfizz-0.1.1-cp312-cp312-manylinux_2_17_i686.manylinux2014_i686.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "9f913c4f2725fca3a41504eb314a6ad080d462853d63d6cb829ec88d77d999dd",
                "md5": "0ffbb38e8aeb612252079e5efc719e54",
                "sha256": "19481208d8e943f939d7945dbd69191c9af2b2647fbdc7d9c6c8b24b26e5bff2"
            },
            "downloads": -1,
            "filename": "pysfizz-0.1.1-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "has_sig": false,
            "md5_digest": "0ffbb38e8aeb612252079e5efc719e54",
            "packagetype": "bdist_wheel",
            "python_version": "cp312",
            "requires_python": ">=3.9",
            "size": 1994339,
            "upload_time": "2025-10-08T00:16:26",
            "upload_time_iso_8601": "2025-10-08T00:16:26.065394Z",
            "url": "https://files.pythonhosted.org/packages/9f/91/3c4f2725fca3a41504eb314a6ad080d462853d63d6cb829ec88d77d999dd/pysfizz-0.1.1-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "a9b7526d2b2dbef6dc58639ca17238a5493f3d66f10fcdb6ef80ef9e03cdf90d",
                "md5": "73e6f6196f9ddceb19c638c333ba78e0",
                "sha256": "6edbac07ddca09d9618962eeeb253a139594b175a56bdccf4a6d4236ebebc512"
            },
            "downloads": -1,
            "filename": "pysfizz-0.1.1-cp312-cp312-win_amd64.whl",
            "has_sig": false,
            "md5_digest": "73e6f6196f9ddceb19c638c333ba78e0",
            "packagetype": "bdist_wheel",
            "python_version": "cp312",
            "requires_python": ">=3.9",
            "size": 1242106,
            "upload_time": "2025-10-08T00:16:27",
            "upload_time_iso_8601": "2025-10-08T00:16:27.343556Z",
            "url": "https://files.pythonhosted.org/packages/a9/b7/526d2b2dbef6dc58639ca17238a5493f3d66f10fcdb6ef80ef9e03cdf90d/pysfizz-0.1.1-cp312-cp312-win_amd64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "e3efd2807d02853b5f95698b494c1046aa017a6647454b32b0bd95f6a608f94b",
                "md5": "d36809c81744af591b60a4f015061114",
                "sha256": "00c18a6d9eb086f9ae57f68fadd2fc2c6c0be7c538eb7ec1719087780aeb376e"
            },
            "downloads": -1,
            "filename": "pysfizz-0.1.1-cp313-cp313-macosx_10_13_x86_64.whl",
            "has_sig": false,
            "md5_digest": "d36809c81744af591b60a4f015061114",
            "packagetype": "bdist_wheel",
            "python_version": "cp313",
            "requires_python": ">=3.9",
            "size": 1289741,
            "upload_time": "2025-10-08T00:16:29",
            "upload_time_iso_8601": "2025-10-08T00:16:29.043166Z",
            "url": "https://files.pythonhosted.org/packages/e3/ef/d2807d02853b5f95698b494c1046aa017a6647454b32b0bd95f6a608f94b/pysfizz-0.1.1-cp313-cp313-macosx_10_13_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "45a65754c2d2b120fb4d9161b1b69fae0e3f1d124164266778e376c4da09b10e",
                "md5": "a98b0622fa12721019f3d5611647c43d",
                "sha256": "add95b15f7315f1e94c7fed77226ae5f1c5d381bc614f3f379d27113228ff823"
            },
            "downloads": -1,
            "filename": "pysfizz-0.1.1-cp313-cp313-macosx_11_0_arm64.whl",
            "has_sig": false,
            "md5_digest": "a98b0622fa12721019f3d5611647c43d",
            "packagetype": "bdist_wheel",
            "python_version": "cp313",
            "requires_python": ">=3.9",
            "size": 1134119,
            "upload_time": "2025-10-08T00:16:30",
            "upload_time_iso_8601": "2025-10-08T00:16:30.294541Z",
            "url": "https://files.pythonhosted.org/packages/45/a6/5754c2d2b120fb4d9161b1b69fae0e3f1d124164266778e376c4da09b10e/pysfizz-0.1.1-cp313-cp313-macosx_11_0_arm64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "b44dd97d358b87085335874dbde661be0cd7bb2d1f9f748a621eee5dde0b4cbb",
                "md5": "631e9158e97ce25d18d8545a0a7ef5eb",
                "sha256": "19ee039553f1e499b7ce0f8f98ffc201df337ca3d00f447ed3db0863f5617ce1"
            },
            "downloads": -1,
            "filename": "pysfizz-0.1.1-cp313-cp313-manylinux_2_17_i686.manylinux2014_i686.whl",
            "has_sig": false,
            "md5_digest": "631e9158e97ce25d18d8545a0a7ef5eb",
            "packagetype": "bdist_wheel",
            "python_version": "cp313",
            "requires_python": ">=3.9",
            "size": 2223622,
            "upload_time": "2025-10-08T00:16:31",
            "upload_time_iso_8601": "2025-10-08T00:16:31.752351Z",
            "url": "https://files.pythonhosted.org/packages/b4/4d/d97d358b87085335874dbde661be0cd7bb2d1f9f748a621eee5dde0b4cbb/pysfizz-0.1.1-cp313-cp313-manylinux_2_17_i686.manylinux2014_i686.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "75e18745fcc508a424a732b879a9e0d27cb4f65898f63fd66bc72100358d231d",
                "md5": "393f27fddd7f2ce264345a3c4e97f8a2",
                "sha256": "9a82270b1e4797d78b7f5388d99e004c7448cb30bdcec1df64ac779d5da68cf0"
            },
            "downloads": -1,
            "filename": "pysfizz-0.1.1-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "has_sig": false,
            "md5_digest": "393f27fddd7f2ce264345a3c4e97f8a2",
            "packagetype": "bdist_wheel",
            "python_version": "cp313",
            "requires_python": ">=3.9",
            "size": 1994223,
            "upload_time": "2025-10-08T00:16:33",
            "upload_time_iso_8601": "2025-10-08T00:16:33.020317Z",
            "url": "https://files.pythonhosted.org/packages/75/e1/8745fcc508a424a732b879a9e0d27cb4f65898f63fd66bc72100358d231d/pysfizz-0.1.1-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "41bbb20b13b33a9cab9b49538bed3269d82251f5e54e05216ba9888ce17c508b",
                "md5": "df9ead1744921c71ce7bfc92ef6dea7c",
                "sha256": "5393614a7ee544655114992f5d3b633199198acdef52899a9ab055f24fef4eb5"
            },
            "downloads": -1,
            "filename": "pysfizz-0.1.1-cp313-cp313-win_amd64.whl",
            "has_sig": false,
            "md5_digest": "df9ead1744921c71ce7bfc92ef6dea7c",
            "packagetype": "bdist_wheel",
            "python_version": "cp313",
            "requires_python": ">=3.9",
            "size": 1241896,
            "upload_time": "2025-10-08T00:16:34",
            "upload_time_iso_8601": "2025-10-08T00:16:34.617324Z",
            "url": "https://files.pythonhosted.org/packages/41/bb/b20b13b33a9cab9b49538bed3269d82251f5e54e05216ba9888ce17c508b/pysfizz-0.1.1-cp313-cp313-win_amd64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "2a2bd5b0cd1a0f0095573414e643173da78f008425a7654d1bb432d9d456fc03",
                "md5": "6042b686ec865cc7ac534ee305062872",
                "sha256": "dc69ab0552fbbd3007fcd4274850c3d312067c364d9cc8ec9addf5599ce0a229"
            },
            "downloads": -1,
            "filename": "pysfizz-0.1.1-cp39-cp39-macosx_10_13_x86_64.whl",
            "has_sig": false,
            "md5_digest": "6042b686ec865cc7ac534ee305062872",
            "packagetype": "bdist_wheel",
            "python_version": "cp39",
            "requires_python": ">=3.9",
            "size": 1290619,
            "upload_time": "2025-10-08T00:16:35",
            "upload_time_iso_8601": "2025-10-08T00:16:35.793249Z",
            "url": "https://files.pythonhosted.org/packages/2a/2b/d5b0cd1a0f0095573414e643173da78f008425a7654d1bb432d9d456fc03/pysfizz-0.1.1-cp39-cp39-macosx_10_13_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "91cd16d574f0b4da745b91de22b2483bf7c59ae47c0cb4cb1289895647cd1b4f",
                "md5": "12075b9e6e888991e7c3fb222e619e62",
                "sha256": "2f26cf3a459ef0369b6b2af0f1ee57ecaed7a8564e1525fe367ab27382b2b04c"
            },
            "downloads": -1,
            "filename": "pysfizz-0.1.1-cp39-cp39-macosx_11_0_arm64.whl",
            "has_sig": false,
            "md5_digest": "12075b9e6e888991e7c3fb222e619e62",
            "packagetype": "bdist_wheel",
            "python_version": "cp39",
            "requires_python": ">=3.9",
            "size": 1136592,
            "upload_time": "2025-10-08T00:16:37",
            "upload_time_iso_8601": "2025-10-08T00:16:37.029877Z",
            "url": "https://files.pythonhosted.org/packages/91/cd/16d574f0b4da745b91de22b2483bf7c59ae47c0cb4cb1289895647cd1b4f/pysfizz-0.1.1-cp39-cp39-macosx_11_0_arm64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "579af1b7fd99efd194b759cee548ed031f160018f8f0d2068ba6592093eb38d1",
                "md5": "593b09221f65789431b050102646dad2",
                "sha256": "70595738d6c39bd3c4c4943feaf7ea3edc2d8993d7aedafb92eff3c278f56044"
            },
            "downloads": -1,
            "filename": "pysfizz-0.1.1-cp39-cp39-manylinux_2_17_i686.manylinux2014_i686.whl",
            "has_sig": false,
            "md5_digest": "593b09221f65789431b050102646dad2",
            "packagetype": "bdist_wheel",
            "python_version": "cp39",
            "requires_python": ">=3.9",
            "size": 2225007,
            "upload_time": "2025-10-08T00:16:38",
            "upload_time_iso_8601": "2025-10-08T00:16:38.314921Z",
            "url": "https://files.pythonhosted.org/packages/57/9a/f1b7fd99efd194b759cee548ed031f160018f8f0d2068ba6592093eb38d1/pysfizz-0.1.1-cp39-cp39-manylinux_2_17_i686.manylinux2014_i686.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "d838b9f7dca92b41c8e73e7ba309bec6e0088d1a1f32d13c3a2a1bb82c6be835",
                "md5": "8128ebf17b8f0dc38fe31e9f9e64b69a",
                "sha256": "1ed59c85544741aaf12e1539025fb2625cee3e3eea761cd865c86618a07133f7"
            },
            "downloads": -1,
            "filename": "pysfizz-0.1.1-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "has_sig": false,
            "md5_digest": "8128ebf17b8f0dc38fe31e9f9e64b69a",
            "packagetype": "bdist_wheel",
            "python_version": "cp39",
            "requires_python": ">=3.9",
            "size": 1995541,
            "upload_time": "2025-10-08T00:16:40",
            "upload_time_iso_8601": "2025-10-08T00:16:40.017852Z",
            "url": "https://files.pythonhosted.org/packages/d8/38/b9f7dca92b41c8e73e7ba309bec6e0088d1a1f32d13c3a2a1bb82c6be835/pysfizz-0.1.1-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "4c1c9f9db1f16806aa8923cc468198fac52cc35b02f564149819804506ebddb9",
                "md5": "986143035e87b034e60a5aea3433275f",
                "sha256": "09ee0aba97772c6d253a82fb03ffccbf60986d618bac98998730aa68cbfcce10"
            },
            "downloads": -1,
            "filename": "pysfizz-0.1.1-cp39-cp39-win_amd64.whl",
            "has_sig": false,
            "md5_digest": "986143035e87b034e60a5aea3433275f",
            "packagetype": "bdist_wheel",
            "python_version": "cp39",
            "requires_python": ">=3.9",
            "size": 1243630,
            "upload_time": "2025-10-08T00:16:41",
            "upload_time_iso_8601": "2025-10-08T00:16:41.308773Z",
            "url": "https://files.pythonhosted.org/packages/4c/1c/9f9db1f16806aa8923cc468198fac52cc35b02f564149819804506ebddb9/pysfizz-0.1.1-cp39-cp39-win_amd64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "fa6758f48283cd227a3c348e71ef2eb563c44c6d9f6027a04e1afd5490a559ff",
                "md5": "ad797279a9d7f051e80d3840be1ae4a4",
                "sha256": "621d5bd132efb4f74f2c94c2ad70a30a30244008aebc79349629c6b9806ba6d5"
            },
            "downloads": -1,
            "filename": "pysfizz-0.1.1.tar.gz",
            "has_sig": false,
            "md5_digest": "ad797279a9d7f051e80d3840be1ae4a4",
            "packagetype": "sdist",
            "python_version": "source",
            "requires_python": ">=3.9",
            "size": 15115617,
            "upload_time": "2025-10-08T00:16:43",
            "upload_time_iso_8601": "2025-10-08T00:16:43.124987Z",
            "url": "https://files.pythonhosted.org/packages/fa/67/58f48283cd227a3c348e71ef2eb563c44c6d9f6027a04e1afd5490a559ff/pysfizz-0.1.1.tar.gz",
            "yanked": false,
            "yanked_reason": null
        }
    ],
    "upload_time": "2025-10-08 00:16:43",
    "github": true,
    "gitlab": false,
    "bitbucket": false,
    "codeberg": false,
    "github_user": "tiianhk",
    "github_project": "pysfizz",
    "travis_ci": false,
    "coveralls": false,
    "github_actions": true,
    "lcname": "pysfizz"
}
        
Elapsed time: 2.88894s