pyworld-prebuilt


Namepyworld-prebuilt JSON
Version 0.3.4.1 PyPI version JSON
download
home_pagehttps://github.com/tsukumijima/pyworld-prebuilt
SummaryPyWorld: a Python wrapper for WORLD vocoder
upload_time2024-03-10 17:47:34
maintainer
docs_urlNone
authorPyworld Contributors
requires_python
license
keywords vocoder
VCS
bugtrack_url
requirements numpy matplotlib argparse cython pysoundfile
Travis-CI
coveralls test coverage No coveralls.
            # pyworld-prebuilt - A Python wrapper of WORLD Vocoder

> [!TIP]  
> This is a prebuilt version of [pyworld](https://github.com/JeremyCCHsu/Python-Wrapper-for-World-Vocoder) for multiple platforms.  
> There are no differences from pyworld except for some migration from some deprecated APIs and the addition of type hints.

WORLD Vocoder is a fast and high-quality vocoder
which parameterizes speech into three components:

  1. `f0`: Pitch contour
  2. `sp`: Harmonic spectral envelope
  3. `ap`: Aperiodic spectral envelope (relative to the harmonic spectral envelope)

It can also (re)synthesize speech using these features (see examples below).

For more information, please visit Dr. Morise's [WORLD repository](https://github.com/mmorise/World)
and the [official website of WORLD Vocoder](http://ml.cs.yamanashi.ac.jp/world/english)


## APIs

### Vocoder Functions
```python
import pyworld as pw
_f0, t = pw.dio(x, fs)    # raw pitch extractor
f0 = pw.stonemask(x, _f0, t, fs)  # pitch refinement
sp = pw.cheaptrick(x, f0, t, fs)  # extract smoothed spectrogram
ap = pw.d4c(x, f0, t, fs)         # extract aperiodicity

y = pw.synthesize(f0, sp, ap, fs) # synthesize an utterance using the parameters
```


### Utility
```python
# Convert speech into features (using default arguments)
f0, sp, ap = pw.wav2world(x, fs)
```
<br/>

You can change the default arguments of the function, too.
See more info using `help`.


## Installation

### Using pip
`pip install pyworld-prebuilt`
<br/>

### Building from Source
```bash
git clone https://github.com/tsukumijima/pyworld-prebuilt.git
cd pyworld-prebuilt
git submodule update --init
pip install -U pip
pip install -r requirements.txt
pip install .
```
It will automatically `git clone` Morise's World Vocoder (C++ version).<br/>
(It seems to me that using `virtualenv` or `conda` is the best practice.)<br/>
<br/>

### Installation Validation
You can validate installation by running
```bash
cd demo
python demo.py
```
to see if you get results in `test/` direcotry.
(Please avoid writing and executing codes in the `pyworld-prebuilt` folder for now.)<br/>

### Environment/Dependencies
- Operating systems
  - Linux Ubuntu 14.04+
  - Windows (thanks to [wuaalb](https://github.com/wuaalb))
  - WSL
- Python
  - 3.7+

You can install dependencies these by `pip install -r requirements.txt`



## Notice
- WORLD vocoder is designed for speech sampled ≥ 16 kHz.
  Applying WORLD to 8 kHz speech will fail.
  See a possible workaround [here](https://github.com/JeremyCCHsu/Python-Wrapper-for-World-Vocoder/issues/54).
- When the SNR is low, extracting pitch using `harvest` instead of `dio`
  is a better option.


## Troubleshooting
1. Upgrade your Cython version to 0.24.<br/>
   (I failed to build it on Cython 0.20.1post0)<br/>
   It'll require you to download Cython form http://cython.org/<br/>
   Unzip it, and `python setup.py install` it.<br/>
   (I tried `pip install Cython` but the upgrade didn't seem correct)<br/>
   (Again, add `--user` if you don't have root access.)
2. Upon executing `demo/demo.py`, the following code might be needed in some environments (e.g. when you're working on a remote Linux server):<br/>

 ```python
 import matplotlib
 matplotlib.use('Agg')
 ```
3. If you encounter `library not found: sndfile` error upon executing `demo.py`,
   you might have to install it by `apt-get install libsoundfile1`.
   You can also replace `pysoundfile` with `scipy` or `librosa`, but some modification is needed:
   - librosa:
     - load(fiilename, dtype=np.float64)
     - output.write_wav(filename, wav, fs)
     - remember to pass `dtype` argument to ensure that the method gives you a `double`.
   - scipy:
     - You'll have to write a customized utility function based on the following methods
     - scipy.io.wavfile.read (but this gives you `short`)
     - scipy.io.wavfile.write

4. If you have installation issue on Windows, I probably could not provide
   much help because my development environment is Ubuntu
   and Windows Subsystem for Linux ([read this if you are interested in installing it](https://github.com/JeremyCCHsu/wsl)).


### Other Installation Suggestions
1. Use `pip install .` is safer and you can easily uninstall pyworld by `pip uninstall pyworld-prebuilt`
  - For Mac users: You might need to do `MACOSX_DEPLOYMENT_TARGET=10.9 pip install .` See [issue](https://github.com/SeanNaren/warp-ctc/issues/129#issuecomment-502349652).
2. Another way to install pyworld is via<br/>
   `python setup.py install`<br/>
   - Add `--user` if you don't have root access<br/>
   - Add `--record install.txt` to track the installation dir<br/>
3. If you just want to try out some experiments, execute<br/>
  `python setup.py build_ext --inplace`<br/>
  Then you can use PyWorld from this directory.<br/>
  You can also copy the resulting **pyworld.so** (pyworld.{arch}.pyd on Windows) file to
  `~/.local/lib/python2.7/site-packages` (or corresponding Windows directory)
  so that you can use it everywhere like an installed package.<br/>
  Alternatively you can copy/symlink the compiled files using pip, e.g. `pip install -e .`



## Acknowledgement
Thank all contributors ([tats-u](https://github.com/tats-u), [wuaalb](https://github.com/wuaalb), [r9y9](https://github.com/r9y9), [rikrd](https://github.com/rikrd), [kudan2510](https://github.com/kundan2510)) for making this repo better and [sotelo](https://github.com/sotelo) whose [world.py](https://github.com/sotelo/world.py) inspired this repo.<br/>

            

Raw data

            {
    "_id": null,
    "home_page": "https://github.com/tsukumijima/pyworld-prebuilt",
    "name": "pyworld-prebuilt",
    "maintainer": "",
    "docs_url": null,
    "requires_python": "",
    "maintainer_email": "",
    "keywords": "vocoder",
    "author": "Pyworld Contributors",
    "author_email": "jeremycchsu@gmail.com",
    "download_url": "https://files.pythonhosted.org/packages/8f/24/ea9ecf4706e337b639c9aa57c410279dac626f905d17932ef56b49ead305/pyworld-prebuilt-0.3.4.1.tar.gz",
    "platform": null,
    "description": "# pyworld-prebuilt - A Python wrapper of WORLD Vocoder\n\n> [!TIP]  \n> This is a prebuilt version of [pyworld](https://github.com/JeremyCCHsu/Python-Wrapper-for-World-Vocoder) for multiple platforms.  \n> There are no differences from pyworld except for some migration from some deprecated APIs and the addition of type hints.\n\nWORLD Vocoder is a fast and high-quality vocoder\nwhich parameterizes speech into three components:\n\n  1. `f0`: Pitch contour\n  2. `sp`: Harmonic spectral envelope\n  3. `ap`: Aperiodic spectral envelope (relative to the harmonic spectral envelope)\n\nIt can also (re)synthesize speech using these features (see examples below).\n\nFor more information, please visit Dr. Morise's [WORLD repository](https://github.com/mmorise/World)\nand the [official website of WORLD Vocoder](http://ml.cs.yamanashi.ac.jp/world/english)\n\n\n## APIs\n\n### Vocoder Functions\n```python\nimport pyworld as pw\n_f0, t = pw.dio(x, fs)    # raw pitch extractor\nf0 = pw.stonemask(x, _f0, t, fs)  # pitch refinement\nsp = pw.cheaptrick(x, f0, t, fs)  # extract smoothed spectrogram\nap = pw.d4c(x, f0, t, fs)         # extract aperiodicity\n\ny = pw.synthesize(f0, sp, ap, fs) # synthesize an utterance using the parameters\n```\n\n\n### Utility\n```python\n# Convert speech into features (using default arguments)\nf0, sp, ap = pw.wav2world(x, fs)\n```\n<br/>\n\nYou can change the default arguments of the function, too.\nSee more info using `help`.\n\n\n## Installation\n\n### Using pip\n`pip install pyworld-prebuilt`\n<br/>\n\n### Building from Source\n```bash\ngit clone https://github.com/tsukumijima/pyworld-prebuilt.git\ncd pyworld-prebuilt\ngit submodule update --init\npip install -U pip\npip install -r requirements.txt\npip install .\n```\nIt will automatically `git clone` Morise's World Vocoder (C++ version).<br/>\n(It seems to me that using `virtualenv` or `conda` is the best practice.)<br/>\n<br/>\n\n### Installation Validation\nYou can validate installation by running\n```bash\ncd demo\npython demo.py\n```\nto see if you get results in `test/` direcotry.\n(Please avoid writing and executing codes in the `pyworld-prebuilt` folder for now.)<br/>\n\n### Environment/Dependencies\n- Operating systems\n  - Linux Ubuntu 14.04+\n  - Windows (thanks to [wuaalb](https://github.com/wuaalb))\n  - WSL\n- Python\n  - 3.7+\n\nYou can install dependencies these by `pip install -r requirements.txt`\n\n\n\n## Notice\n- WORLD vocoder is designed for speech sampled \u2265 16 kHz.\n  Applying WORLD to 8 kHz speech will fail.\n  See a possible workaround [here](https://github.com/JeremyCCHsu/Python-Wrapper-for-World-Vocoder/issues/54).\n- When the SNR is low, extracting pitch using `harvest` instead of `dio`\n  is a better option.\n\n\n## Troubleshooting\n1. Upgrade your Cython version to 0.24.<br/>\n   (I failed to build it on Cython 0.20.1post0)<br/>\n   It'll require you to download Cython form http://cython.org/<br/>\n   Unzip it, and `python setup.py install` it.<br/>\n   (I tried `pip install Cython` but the upgrade didn't seem correct)<br/>\n   (Again, add `--user` if you don't have root access.)\n2. Upon executing `demo/demo.py`, the following code might be needed in some environments (e.g. when you're working on a remote Linux server):<br/>\n\n ```python\n import matplotlib\n matplotlib.use('Agg')\n ```\n3. If you encounter `library not found: sndfile` error upon executing `demo.py`,\n   you might have to install it by `apt-get install libsoundfile1`.\n   You can also replace `pysoundfile` with `scipy` or `librosa`, but some modification is needed:\n   - librosa:\n     - load(fiilename, dtype=np.float64)\n     - output.write_wav(filename, wav, fs)\n     - remember to pass `dtype` argument to ensure that the method gives you a `double`.\n   - scipy:\n     - You'll have to write a customized utility function based on the following methods\n     - scipy.io.wavfile.read (but this gives you `short`)\n     - scipy.io.wavfile.write\n\n4. If you have installation issue on Windows, I probably could not provide\n   much help because my development environment is Ubuntu\n   and Windows Subsystem for Linux ([read this if you are interested in installing it](https://github.com/JeremyCCHsu/wsl)).\n\n\n### Other Installation Suggestions\n1. Use `pip install .` is safer and you can easily uninstall pyworld by `pip uninstall pyworld-prebuilt`\n  - For Mac users: You might need to do `MACOSX_DEPLOYMENT_TARGET=10.9 pip install .` See [issue](https://github.com/SeanNaren/warp-ctc/issues/129#issuecomment-502349652).\n2. Another way to install pyworld is via<br/>\n   `python setup.py install`<br/>\n   - Add `--user` if you don't have root access<br/>\n   - Add `--record install.txt` to track the installation dir<br/>\n3. If you just want to try out some experiments, execute<br/>\n  `python setup.py build_ext --inplace`<br/>\n  Then you can use PyWorld from this directory.<br/>\n  You can also copy the resulting **pyworld.so** (pyworld.{arch}.pyd on Windows) file to\n  `~/.local/lib/python2.7/site-packages` (or corresponding Windows directory)\n  so that you can use it everywhere like an installed package.<br/>\n  Alternatively you can copy/symlink the compiled files using pip, e.g. `pip install -e .`\n\n\n\n## Acknowledgement\nThank all contributors ([tats-u](https://github.com/tats-u), [wuaalb](https://github.com/wuaalb), [r9y9](https://github.com/r9y9), [rikrd](https://github.com/rikrd), [kudan2510](https://github.com/kundan2510)) for making this repo better and [sotelo](https://github.com/sotelo) whose [world.py](https://github.com/sotelo/world.py) inspired this repo.<br/>\n",
    "bugtrack_url": null,
    "license": "",
    "summary": "PyWorld: a Python wrapper for WORLD vocoder",
    "version": "0.3.4.1",
    "project_urls": {
        "Homepage": "https://github.com/tsukumijima/pyworld-prebuilt"
    },
    "split_keywords": [
        "vocoder"
    ],
    "urls": [
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "ff2a24da9d5961b93e850d4879879467ad208e02cef7b4878b6712e2b857a3fd",
                "md5": "aa32a40d9f9880fe78628d2902367583",
                "sha256": "f2cc54d6f7026152b86dfa2b8289b544051c0e6ada9f379c8f197d851e2aa140"
            },
            "downloads": -1,
            "filename": "pyworld_prebuilt-0.3.4.1-cp310-cp310-macosx_10_9_universal2.whl",
            "has_sig": false,
            "md5_digest": "aa32a40d9f9880fe78628d2902367583",
            "packagetype": "bdist_wheel",
            "python_version": "cp310",
            "requires_python": null,
            "size": 420546,
            "upload_time": "2024-03-10T17:46:33",
            "upload_time_iso_8601": "2024-03-10T17:46:33.269978Z",
            "url": "https://files.pythonhosted.org/packages/ff/2a/24da9d5961b93e850d4879879467ad208e02cef7b4878b6712e2b857a3fd/pyworld_prebuilt-0.3.4.1-cp310-cp310-macosx_10_9_universal2.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "b80d0cf6b87fa78219708f2cc7cefdf1be52429609b0c834f214429e91fba1a4",
                "md5": "d8868060c431c582fcb814a24dfe17dd",
                "sha256": "2e592bc145b37ac79a3892dd250ecd202fe370a6a14267fdaf2d8f0df595d7a7"
            },
            "downloads": -1,
            "filename": "pyworld_prebuilt-0.3.4.1-cp310-cp310-macosx_10_9_x86_64.whl",
            "has_sig": false,
            "md5_digest": "d8868060c431c582fcb814a24dfe17dd",
            "packagetype": "bdist_wheel",
            "python_version": "cp310",
            "requires_python": null,
            "size": 230150,
            "upload_time": "2024-03-10T17:46:35",
            "upload_time_iso_8601": "2024-03-10T17:46:35.267831Z",
            "url": "https://files.pythonhosted.org/packages/b8/0d/0cf6b87fa78219708f2cc7cefdf1be52429609b0c834f214429e91fba1a4/pyworld_prebuilt-0.3.4.1-cp310-cp310-macosx_10_9_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "8603b7bf5bab659586b3a0354669376e3322683267db665e6d09d068babc5023",
                "md5": "3cfef68b49635d26b705224b14fe5213",
                "sha256": "428ea03bcee5c4f205feed166440fbe8c95e61fedd5b906e82dbb2c3293e5008"
            },
            "downloads": -1,
            "filename": "pyworld_prebuilt-0.3.4.1-cp310-cp310-macosx_11_0_arm64.whl",
            "has_sig": false,
            "md5_digest": "3cfef68b49635d26b705224b14fe5213",
            "packagetype": "bdist_wheel",
            "python_version": "cp310",
            "requires_python": null,
            "size": 195242,
            "upload_time": "2024-03-10T17:46:37",
            "upload_time_iso_8601": "2024-03-10T17:46:37.285072Z",
            "url": "https://files.pythonhosted.org/packages/86/03/b7bf5bab659586b3a0354669376e3322683267db665e6d09d068babc5023/pyworld_prebuilt-0.3.4.1-cp310-cp310-macosx_11_0_arm64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "04083c1582ae0cd81d3bffa822611f42ef0d205ebbfb8cbf773fc92e2d998585",
                "md5": "b58298393cbc5988505c8fe4cf24c00c",
                "sha256": "71913e80a5ecb342491a2c75be3cb379f1d3d3f8d2e7b3a5aa1b3cf7c66d8ad5"
            },
            "downloads": -1,
            "filename": "pyworld_prebuilt-0.3.4.1-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
            "has_sig": false,
            "md5_digest": "b58298393cbc5988505c8fe4cf24c00c",
            "packagetype": "bdist_wheel",
            "python_version": "cp310",
            "requires_python": null,
            "size": 958680,
            "upload_time": "2024-03-10T17:46:39",
            "upload_time_iso_8601": "2024-03-10T17:46:39.045522Z",
            "url": "https://files.pythonhosted.org/packages/04/08/3c1582ae0cd81d3bffa822611f42ef0d205ebbfb8cbf773fc92e2d998585/pyworld_prebuilt-0.3.4.1-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "61c044576fd78a55154fdde62548f455eddf5927870dae9d3568da5131a36279",
                "md5": "dd79a54745d410af52bc31bdee28aeb2",
                "sha256": "84faff450d22b39b4e27bf2953b9229753dfa6a1facf38f631e6b20900125266"
            },
            "downloads": -1,
            "filename": "pyworld_prebuilt-0.3.4.1-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "has_sig": false,
            "md5_digest": "dd79a54745d410af52bc31bdee28aeb2",
            "packagetype": "bdist_wheel",
            "python_version": "cp310",
            "requires_python": null,
            "size": 1003040,
            "upload_time": "2024-03-10T17:46:41",
            "upload_time_iso_8601": "2024-03-10T17:46:41.002948Z",
            "url": "https://files.pythonhosted.org/packages/61/c0/44576fd78a55154fdde62548f455eddf5927870dae9d3568da5131a36279/pyworld_prebuilt-0.3.4.1-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "64e11d3ec2d10dc76c254362f2414648111d7660297dd683ad9e94ac04ac1806",
                "md5": "ec53f9bbcc02f2c1eb10f165395c1bd9",
                "sha256": "0f27f6bcfebe1bc14b6865df4e80615e5dfef49005ef898230758fcda7ca123e"
            },
            "downloads": -1,
            "filename": "pyworld_prebuilt-0.3.4.1-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl",
            "has_sig": false,
            "md5_digest": "ec53f9bbcc02f2c1eb10f165395c1bd9",
            "packagetype": "bdist_wheel",
            "python_version": "cp310",
            "requires_python": null,
            "size": 955683,
            "upload_time": "2024-03-10T17:46:42",
            "upload_time_iso_8601": "2024-03-10T17:46:42.881677Z",
            "url": "https://files.pythonhosted.org/packages/64/e1/1d3ec2d10dc76c254362f2414648111d7660297dd683ad9e94ac04ac1806/pyworld_prebuilt-0.3.4.1-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "b8a7c81f76c4bc27380147a677d543dbb27cf0c9a7a2c00ed1df0eb95b09bb99",
                "md5": "c34ee7c159ced485faeefecb13fe3705",
                "sha256": "1cf58c1d48b3545fa9c5b14583bb121680078aa2d8187a6d7389b067d3f08932"
            },
            "downloads": -1,
            "filename": "pyworld_prebuilt-0.3.4.1-cp310-cp310-win32.whl",
            "has_sig": false,
            "md5_digest": "c34ee7c159ced485faeefecb13fe3705",
            "packagetype": "bdist_wheel",
            "python_version": "cp310",
            "requires_python": null,
            "size": 148361,
            "upload_time": "2024-03-10T17:46:44",
            "upload_time_iso_8601": "2024-03-10T17:46:44.777629Z",
            "url": "https://files.pythonhosted.org/packages/b8/a7/c81f76c4bc27380147a677d543dbb27cf0c9a7a2c00ed1df0eb95b09bb99/pyworld_prebuilt-0.3.4.1-cp310-cp310-win32.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "c40c10542c22f8bb8e5d805071c2920b4f2c5d617b6192f14883a539d7f2a17e",
                "md5": "e616b521d915019aacac61b6daaebae4",
                "sha256": "7125a61c1b3d398963e367a653d7a9775f93b847e79dd670581446c35dccb714"
            },
            "downloads": -1,
            "filename": "pyworld_prebuilt-0.3.4.1-cp310-cp310-win_amd64.whl",
            "has_sig": false,
            "md5_digest": "e616b521d915019aacac61b6daaebae4",
            "packagetype": "bdist_wheel",
            "python_version": "cp310",
            "requires_python": null,
            "size": 185040,
            "upload_time": "2024-03-10T17:46:46",
            "upload_time_iso_8601": "2024-03-10T17:46:46.490506Z",
            "url": "https://files.pythonhosted.org/packages/c4/0c/10542c22f8bb8e5d805071c2920b4f2c5d617b6192f14883a539d7f2a17e/pyworld_prebuilt-0.3.4.1-cp310-cp310-win_amd64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "8b00d69c39a701ca70ee977ddd4dcc593d231f08208768abbf62be1a2889cde4",
                "md5": "2bf1e0ece23b6de872a860befb7f38cc",
                "sha256": "5e8c7652aaae2f85f75964fcfb5a43536de249a15f213e65d7360f6a2cdd4ff0"
            },
            "downloads": -1,
            "filename": "pyworld_prebuilt-0.3.4.1-cp311-cp311-macosx_10_9_universal2.whl",
            "has_sig": false,
            "md5_digest": "2bf1e0ece23b6de872a860befb7f38cc",
            "packagetype": "bdist_wheel",
            "python_version": "cp311",
            "requires_python": null,
            "size": 420917,
            "upload_time": "2024-03-10T17:46:48",
            "upload_time_iso_8601": "2024-03-10T17:46:48.434594Z",
            "url": "https://files.pythonhosted.org/packages/8b/00/d69c39a701ca70ee977ddd4dcc593d231f08208768abbf62be1a2889cde4/pyworld_prebuilt-0.3.4.1-cp311-cp311-macosx_10_9_universal2.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "b8971245f885241977211c4c64531d2620b370916e9ec35290e553d194e55863",
                "md5": "e4e475eaacfe71e79819195efff61c6f",
                "sha256": "7166cee4f42a88edf4dbbff31b37292b0ea22b4e3154b676a34de326144b7a6a"
            },
            "downloads": -1,
            "filename": "pyworld_prebuilt-0.3.4.1-cp311-cp311-macosx_10_9_x86_64.whl",
            "has_sig": false,
            "md5_digest": "e4e475eaacfe71e79819195efff61c6f",
            "packagetype": "bdist_wheel",
            "python_version": "cp311",
            "requires_python": null,
            "size": 230283,
            "upload_time": "2024-03-10T17:46:50",
            "upload_time_iso_8601": "2024-03-10T17:46:50.240123Z",
            "url": "https://files.pythonhosted.org/packages/b8/97/1245f885241977211c4c64531d2620b370916e9ec35290e553d194e55863/pyworld_prebuilt-0.3.4.1-cp311-cp311-macosx_10_9_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "1d3fd209e4565983d56469c12e29385ceb72d888e136751441c310b3d8e7de4c",
                "md5": "3c0f215f7e7bbb759f3a1ccf2143c94f",
                "sha256": "78b3ee1aac6ce00af7165fd7db1ad901926d0052e230506c8b394683c711ba46"
            },
            "downloads": -1,
            "filename": "pyworld_prebuilt-0.3.4.1-cp311-cp311-macosx_11_0_arm64.whl",
            "has_sig": false,
            "md5_digest": "3c0f215f7e7bbb759f3a1ccf2143c94f",
            "packagetype": "bdist_wheel",
            "python_version": "cp311",
            "requires_python": null,
            "size": 195546,
            "upload_time": "2024-03-10T17:46:51",
            "upload_time_iso_8601": "2024-03-10T17:46:51.367823Z",
            "url": "https://files.pythonhosted.org/packages/1d/3f/d209e4565983d56469c12e29385ceb72d888e136751441c310b3d8e7de4c/pyworld_prebuilt-0.3.4.1-cp311-cp311-macosx_11_0_arm64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "c94ecb673fbbb95f7b9c032687aadac52623345d8fe1188b4da10f17ee6132d5",
                "md5": "a5e3d6420b9ff7ea5c7061b6ede7396e",
                "sha256": "0a7e5e0e7cc1bb10c7eb71c530dbfec737a48cf4ab116ab0827092288c68ee56"
            },
            "downloads": -1,
            "filename": "pyworld_prebuilt-0.3.4.1-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
            "has_sig": false,
            "md5_digest": "a5e3d6420b9ff7ea5c7061b6ede7396e",
            "packagetype": "bdist_wheel",
            "python_version": "cp311",
            "requires_python": null,
            "size": 1015928,
            "upload_time": "2024-03-10T17:46:53",
            "upload_time_iso_8601": "2024-03-10T17:46:53.194400Z",
            "url": "https://files.pythonhosted.org/packages/c9/4e/cb673fbbb95f7b9c032687aadac52623345d8fe1188b4da10f17ee6132d5/pyworld_prebuilt-0.3.4.1-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "632e48eefbcaabf9df561640046b7164bdcf530461740013f6afd0d2fb844fc4",
                "md5": "0336ffd7a13c2a40827da7f75cb0f07b",
                "sha256": "bdd181f950c8fef34160f79f1cd3fc496ef4701700dd91cc8b1a593d6a9bb053"
            },
            "downloads": -1,
            "filename": "pyworld_prebuilt-0.3.4.1-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "has_sig": false,
            "md5_digest": "0336ffd7a13c2a40827da7f75cb0f07b",
            "packagetype": "bdist_wheel",
            "python_version": "cp311",
            "requires_python": null,
            "size": 1065146,
            "upload_time": "2024-03-10T17:46:55",
            "upload_time_iso_8601": "2024-03-10T17:46:55.181262Z",
            "url": "https://files.pythonhosted.org/packages/63/2e/48eefbcaabf9df561640046b7164bdcf530461740013f6afd0d2fb844fc4/pyworld_prebuilt-0.3.4.1-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "697bb9c6c95d0dd36d1d7ff9be8f55cca6955fc622b8acbc1072ae15b38897ed",
                "md5": "c484c493184f7c5a11c01b66232d1a9e",
                "sha256": "fbd1da6dc8baf0bb740f265ce3d0ed56e00cb85745e0883fd0b959b690d7e90c"
            },
            "downloads": -1,
            "filename": "pyworld_prebuilt-0.3.4.1-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl",
            "has_sig": false,
            "md5_digest": "c484c493184f7c5a11c01b66232d1a9e",
            "packagetype": "bdist_wheel",
            "python_version": "cp311",
            "requires_python": null,
            "size": 1010875,
            "upload_time": "2024-03-10T17:46:57",
            "upload_time_iso_8601": "2024-03-10T17:46:57.350486Z",
            "url": "https://files.pythonhosted.org/packages/69/7b/b9c6c95d0dd36d1d7ff9be8f55cca6955fc622b8acbc1072ae15b38897ed/pyworld_prebuilt-0.3.4.1-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "91bed6b66c9a44b86656dd5f96db0a33667729f10d53fa054a4c3f4f5ff808af",
                "md5": "64f803a6d765550f6558016d77768973",
                "sha256": "830b74bf696ba7e9bda0df031338562cbf4948e4070643da846c138187ff6aec"
            },
            "downloads": -1,
            "filename": "pyworld_prebuilt-0.3.4.1-cp311-cp311-win32.whl",
            "has_sig": false,
            "md5_digest": "64f803a6d765550f6558016d77768973",
            "packagetype": "bdist_wheel",
            "python_version": "cp311",
            "requires_python": null,
            "size": 147855,
            "upload_time": "2024-03-10T17:46:58",
            "upload_time_iso_8601": "2024-03-10T17:46:58.624988Z",
            "url": "https://files.pythonhosted.org/packages/91/be/d6b66c9a44b86656dd5f96db0a33667729f10d53fa054a4c3f4f5ff808af/pyworld_prebuilt-0.3.4.1-cp311-cp311-win32.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "d5ac8854e4cec2e8a0bbf630693465308c95b4b1e92a205e30698e562c54a2a5",
                "md5": "eea4c7c3a651717dfcabeb7e0a7e80ac",
                "sha256": "0b8e4c66d753d64872f9bff0c344b771d352f8ea3883d6d0da9944feaf8c817a"
            },
            "downloads": -1,
            "filename": "pyworld_prebuilt-0.3.4.1-cp311-cp311-win_amd64.whl",
            "has_sig": false,
            "md5_digest": "eea4c7c3a651717dfcabeb7e0a7e80ac",
            "packagetype": "bdist_wheel",
            "python_version": "cp311",
            "requires_python": null,
            "size": 184868,
            "upload_time": "2024-03-10T17:46:59",
            "upload_time_iso_8601": "2024-03-10T17:46:59.719442Z",
            "url": "https://files.pythonhosted.org/packages/d5/ac/8854e4cec2e8a0bbf630693465308c95b4b1e92a205e30698e562c54a2a5/pyworld_prebuilt-0.3.4.1-cp311-cp311-win_amd64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "e8e2c2b8b64fbbd5220ad8ff8c25a63d79b02499d1a5a6698af948de12a965ce",
                "md5": "d3c5632b9494a6291b544698ee737ba0",
                "sha256": "ab382459fa22520f3dc55a87f6e41ca2fde551fd00cea8575c20a94320103091"
            },
            "downloads": -1,
            "filename": "pyworld_prebuilt-0.3.4.1-cp312-cp312-macosx_10_9_universal2.whl",
            "has_sig": false,
            "md5_digest": "d3c5632b9494a6291b544698ee737ba0",
            "packagetype": "bdist_wheel",
            "python_version": "cp312",
            "requires_python": null,
            "size": 409132,
            "upload_time": "2024-03-10T17:47:00",
            "upload_time_iso_8601": "2024-03-10T17:47:00.888305Z",
            "url": "https://files.pythonhosted.org/packages/e8/e2/c2b8b64fbbd5220ad8ff8c25a63d79b02499d1a5a6698af948de12a965ce/pyworld_prebuilt-0.3.4.1-cp312-cp312-macosx_10_9_universal2.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "44d521fdeecb8f104ed7e9ab8eab0af635a3c853d473972d4f9bba90e4cd2f0c",
                "md5": "0164cbdfa212efec248c259755f4bdd7",
                "sha256": "ff752196fc77b02c58c53bd35ac3713796517ed472e1e35bc7f8fc65ac2d41e9"
            },
            "downloads": -1,
            "filename": "pyworld_prebuilt-0.3.4.1-cp312-cp312-macosx_10_9_x86_64.whl",
            "has_sig": false,
            "md5_digest": "0164cbdfa212efec248c259755f4bdd7",
            "packagetype": "bdist_wheel",
            "python_version": "cp312",
            "requires_python": null,
            "size": 221632,
            "upload_time": "2024-03-10T17:47:02",
            "upload_time_iso_8601": "2024-03-10T17:47:02.072844Z",
            "url": "https://files.pythonhosted.org/packages/44/d5/21fdeecb8f104ed7e9ab8eab0af635a3c853d473972d4f9bba90e4cd2f0c/pyworld_prebuilt-0.3.4.1-cp312-cp312-macosx_10_9_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "3aa721ff21d008428f3ce6fae6f9d02950a9ea0f66cf0e72fa6b3eadec463d09",
                "md5": "e28ba5ba177df29f3c27d323d6762ea9",
                "sha256": "9e9592a40072f69db381c8c44e47510abde837d5e0313d7ad519a2dd2947aacd"
            },
            "downloads": -1,
            "filename": "pyworld_prebuilt-0.3.4.1-cp312-cp312-macosx_11_0_arm64.whl",
            "has_sig": false,
            "md5_digest": "e28ba5ba177df29f3c27d323d6762ea9",
            "packagetype": "bdist_wheel",
            "python_version": "cp312",
            "requires_python": null,
            "size": 193099,
            "upload_time": "2024-03-10T17:47:04",
            "upload_time_iso_8601": "2024-03-10T17:47:04.033294Z",
            "url": "https://files.pythonhosted.org/packages/3a/a7/21ff21d008428f3ce6fae6f9d02950a9ea0f66cf0e72fa6b3eadec463d09/pyworld_prebuilt-0.3.4.1-cp312-cp312-macosx_11_0_arm64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "38805a64c4b1b0d39ddf86cfa7a1d39e5fecf1efa49ed1519e855888c6d9a7bb",
                "md5": "1addb03ebd0b633ffc16f87246827784",
                "sha256": "af0cdb0c372ee83079af5cb75c8983bd0ca990fb9ecfc9bd116433695a624a9d"
            },
            "downloads": -1,
            "filename": "pyworld_prebuilt-0.3.4.1-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
            "has_sig": false,
            "md5_digest": "1addb03ebd0b633ffc16f87246827784",
            "packagetype": "bdist_wheel",
            "python_version": "cp312",
            "requires_python": null,
            "size": 988668,
            "upload_time": "2024-03-10T17:47:06",
            "upload_time_iso_8601": "2024-03-10T17:47:06.130210Z",
            "url": "https://files.pythonhosted.org/packages/38/80/5a64c4b1b0d39ddf86cfa7a1d39e5fecf1efa49ed1519e855888c6d9a7bb/pyworld_prebuilt-0.3.4.1-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "fe3e84568ae4e0be4c7dda2ed1da17f10f9b988cf100be34f8d8cfc1b75da3b3",
                "md5": "000d81e38776d253ce296f92069adb04",
                "sha256": "79b70620fb19ecb6f5c942ea8b674bbac8078ccb91e2d903a012a8b6831c6186"
            },
            "downloads": -1,
            "filename": "pyworld_prebuilt-0.3.4.1-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "has_sig": false,
            "md5_digest": "000d81e38776d253ce296f92069adb04",
            "packagetype": "bdist_wheel",
            "python_version": "cp312",
            "requires_python": null,
            "size": 1033098,
            "upload_time": "2024-03-10T17:47:07",
            "upload_time_iso_8601": "2024-03-10T17:47:07.481614Z",
            "url": "https://files.pythonhosted.org/packages/fe/3e/84568ae4e0be4c7dda2ed1da17f10f9b988cf100be34f8d8cfc1b75da3b3/pyworld_prebuilt-0.3.4.1-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "cdd83bf69296a9218f8a4669c28c399e4640193e6bf527d0de3a5c07f3711ac0",
                "md5": "f655458daacb2f23d6c972edd5bb188a",
                "sha256": "42cfd514c50eed9d66e0370dfe9434ca361c70125399f8f2766a9c9f361dec92"
            },
            "downloads": -1,
            "filename": "pyworld_prebuilt-0.3.4.1-cp312-cp312-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl",
            "has_sig": false,
            "md5_digest": "f655458daacb2f23d6c972edd5bb188a",
            "packagetype": "bdist_wheel",
            "python_version": "cp312",
            "requires_python": null,
            "size": 982439,
            "upload_time": "2024-03-10T17:47:08",
            "upload_time_iso_8601": "2024-03-10T17:47:08.837316Z",
            "url": "https://files.pythonhosted.org/packages/cd/d8/3bf69296a9218f8a4669c28c399e4640193e6bf527d0de3a5c07f3711ac0/pyworld_prebuilt-0.3.4.1-cp312-cp312-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "216b97574c846c69d7cc99356e43d336717dcb67d33d100541b7ef82ce6afb03",
                "md5": "3fc29bc1eecaf375d01dbc9b23ec0867",
                "sha256": "372aec758db16ae8667f368842e39e659b9ea0559ad1153886aeae003303e323"
            },
            "downloads": -1,
            "filename": "pyworld_prebuilt-0.3.4.1-cp312-cp312-win32.whl",
            "has_sig": false,
            "md5_digest": "3fc29bc1eecaf375d01dbc9b23ec0867",
            "packagetype": "bdist_wheel",
            "python_version": "cp312",
            "requires_python": null,
            "size": 146452,
            "upload_time": "2024-03-10T17:47:10",
            "upload_time_iso_8601": "2024-03-10T17:47:10.747500Z",
            "url": "https://files.pythonhosted.org/packages/21/6b/97574c846c69d7cc99356e43d336717dcb67d33d100541b7ef82ce6afb03/pyworld_prebuilt-0.3.4.1-cp312-cp312-win32.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "3b712b8718fa8c3cf73d21b36d71d668e6c58a747d5e0e466ec1ddd712a0b521",
                "md5": "4a00c8447a924e22624444c7138d7572",
                "sha256": "6fcde22de3454ce6a625ffe5013948b98cc524a5e56ff94315efbb9ec01d0401"
            },
            "downloads": -1,
            "filename": "pyworld_prebuilt-0.3.4.1-cp312-cp312-win_amd64.whl",
            "has_sig": false,
            "md5_digest": "4a00c8447a924e22624444c7138d7572",
            "packagetype": "bdist_wheel",
            "python_version": "cp312",
            "requires_python": null,
            "size": 180779,
            "upload_time": "2024-03-10T17:47:11",
            "upload_time_iso_8601": "2024-03-10T17:47:11.827467Z",
            "url": "https://files.pythonhosted.org/packages/3b/71/2b8718fa8c3cf73d21b36d71d668e6c58a747d5e0e466ec1ddd712a0b521/pyworld_prebuilt-0.3.4.1-cp312-cp312-win_amd64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "ce599c888d6b7488d963c87db3419da864cf87c2e0cb081a146793cc82486b1a",
                "md5": "e8a8e5d556da44af999fad58b5f84ca9",
                "sha256": "31bb634fb1a75b6ec9085c4b6c7246e4f35a9360d579719ce22506588bf6063d"
            },
            "downloads": -1,
            "filename": "pyworld_prebuilt-0.3.4.1-cp38-cp38-macosx_10_9_universal2.whl",
            "has_sig": false,
            "md5_digest": "e8a8e5d556da44af999fad58b5f84ca9",
            "packagetype": "bdist_wheel",
            "python_version": "cp38",
            "requires_python": null,
            "size": 412865,
            "upload_time": "2024-03-10T17:47:12",
            "upload_time_iso_8601": "2024-03-10T17:47:12.978236Z",
            "url": "https://files.pythonhosted.org/packages/ce/59/9c888d6b7488d963c87db3419da864cf87c2e0cb081a146793cc82486b1a/pyworld_prebuilt-0.3.4.1-cp38-cp38-macosx_10_9_universal2.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "4ce3aae8ad5048b0bcf34b1461cfc4373c1e1934542a94085d1286b555fb8cf7",
                "md5": "63267917022a5722132a1fcd63517c0e",
                "sha256": "efbb914a403aa6cc34bb6b30e7633b9ca609468d459c54e201b90836c3e1761f"
            },
            "downloads": -1,
            "filename": "pyworld_prebuilt-0.3.4.1-cp38-cp38-macosx_10_9_x86_64.whl",
            "has_sig": false,
            "md5_digest": "63267917022a5722132a1fcd63517c0e",
            "packagetype": "bdist_wheel",
            "python_version": "cp38",
            "requires_python": null,
            "size": 225671,
            "upload_time": "2024-03-10T17:47:14",
            "upload_time_iso_8601": "2024-03-10T17:47:14.823683Z",
            "url": "https://files.pythonhosted.org/packages/4c/e3/aae8ad5048b0bcf34b1461cfc4373c1e1934542a94085d1286b555fb8cf7/pyworld_prebuilt-0.3.4.1-cp38-cp38-macosx_10_9_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "3447ef2539f0d8e767316af17d4f5fe388305d7bd38b41cc1dd6bdca8208982b",
                "md5": "a1466f3834feb554065cf42fd17f7b69",
                "sha256": "8a15e23fea27b7326cc989754cd8f9655ab1e26b601956d93086fcd221f3f7e1"
            },
            "downloads": -1,
            "filename": "pyworld_prebuilt-0.3.4.1-cp38-cp38-macosx_11_0_arm64.whl",
            "has_sig": false,
            "md5_digest": "a1466f3834feb554065cf42fd17f7b69",
            "packagetype": "bdist_wheel",
            "python_version": "cp38",
            "requires_python": null,
            "size": 192451,
            "upload_time": "2024-03-10T17:47:15",
            "upload_time_iso_8601": "2024-03-10T17:47:15.997956Z",
            "url": "https://files.pythonhosted.org/packages/34/47/ef2539f0d8e767316af17d4f5fe388305d7bd38b41cc1dd6bdca8208982b/pyworld_prebuilt-0.3.4.1-cp38-cp38-macosx_11_0_arm64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "7a5f8d32491bd110fa6f0868ae8795eda85ff9d099bb6c96b70433cafc381932",
                "md5": "6bc3955896c6ff41ae49fc3127d333f2",
                "sha256": "de08e9de5aea39fe1fc42344558473aa6d4c3ff43f6c970253f7b824b6a2cd0f"
            },
            "downloads": -1,
            "filename": "pyworld_prebuilt-0.3.4.1-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
            "has_sig": false,
            "md5_digest": "6bc3955896c6ff41ae49fc3127d333f2",
            "packagetype": "bdist_wheel",
            "python_version": "cp38",
            "requires_python": null,
            "size": 970967,
            "upload_time": "2024-03-10T17:47:17",
            "upload_time_iso_8601": "2024-03-10T17:47:17.254360Z",
            "url": "https://files.pythonhosted.org/packages/7a/5f/8d32491bd110fa6f0868ae8795eda85ff9d099bb6c96b70433cafc381932/pyworld_prebuilt-0.3.4.1-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "da04d1d88223a84c01963720b4f668dbd5eb9774a5c02f6ac4ef7ab8744af035",
                "md5": "7ef39ddf0277be660893fdb623b42d31",
                "sha256": "06305b6ce183315bf9ccfab96fa2f1ac6d87e7f5ead4272a0a29b3846722b364"
            },
            "downloads": -1,
            "filename": "pyworld_prebuilt-0.3.4.1-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "has_sig": false,
            "md5_digest": "7ef39ddf0277be660893fdb623b42d31",
            "packagetype": "bdist_wheel",
            "python_version": "cp38",
            "requires_python": null,
            "size": 1014694,
            "upload_time": "2024-03-10T17:47:18",
            "upload_time_iso_8601": "2024-03-10T17:47:18.456721Z",
            "url": "https://files.pythonhosted.org/packages/da/04/d1d88223a84c01963720b4f668dbd5eb9774a5c02f6ac4ef7ab8744af035/pyworld_prebuilt-0.3.4.1-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "6274d39e1511e147d3c116bee17dddc8f08fcb3600ce457eb22e34e52e4189c0",
                "md5": "551f5eb2cd2eeec8cd164fe49758b7e0",
                "sha256": "fe4431b08be6436827932813fba9a5d561e2b047a043a9c27c8c75b92748e2e0"
            },
            "downloads": -1,
            "filename": "pyworld_prebuilt-0.3.4.1-cp38-cp38-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl",
            "has_sig": false,
            "md5_digest": "551f5eb2cd2eeec8cd164fe49758b7e0",
            "packagetype": "bdist_wheel",
            "python_version": "cp38",
            "requires_python": null,
            "size": 965539,
            "upload_time": "2024-03-10T17:47:20",
            "upload_time_iso_8601": "2024-03-10T17:47:20.226127Z",
            "url": "https://files.pythonhosted.org/packages/62/74/d39e1511e147d3c116bee17dddc8f08fcb3600ce457eb22e34e52e4189c0/pyworld_prebuilt-0.3.4.1-cp38-cp38-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "3949cae81e94297657692c516d236e3fa7cc84459d4b246f9b64ddeea449d041",
                "md5": "8ee0a5292d7007981508c8bfb799c1ea",
                "sha256": "f4bef84652c85408647a1fa2aed310ebd9cb5d2c02ad5628eb39454309141ba0"
            },
            "downloads": -1,
            "filename": "pyworld_prebuilt-0.3.4.1-cp38-cp38-win32.whl",
            "has_sig": false,
            "md5_digest": "8ee0a5292d7007981508c8bfb799c1ea",
            "packagetype": "bdist_wheel",
            "python_version": "cp38",
            "requires_python": null,
            "size": 149059,
            "upload_time": "2024-03-10T17:47:21",
            "upload_time_iso_8601": "2024-03-10T17:47:21.343249Z",
            "url": "https://files.pythonhosted.org/packages/39/49/cae81e94297657692c516d236e3fa7cc84459d4b246f9b64ddeea449d041/pyworld_prebuilt-0.3.4.1-cp38-cp38-win32.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "bb880f052cddb81dc0e29b220598cf829debd94f6763ad192d878d89e6a9f51d",
                "md5": "51d2cde7aad35676477fac64f709fcdb",
                "sha256": "34fd08888a3584d527907afc12ccc645270f98f289b03cf6c532c9aee191d812"
            },
            "downloads": -1,
            "filename": "pyworld_prebuilt-0.3.4.1-cp38-cp38-win_amd64.whl",
            "has_sig": false,
            "md5_digest": "51d2cde7aad35676477fac64f709fcdb",
            "packagetype": "bdist_wheel",
            "python_version": "cp38",
            "requires_python": null,
            "size": 185635,
            "upload_time": "2024-03-10T17:47:23",
            "upload_time_iso_8601": "2024-03-10T17:47:23.044661Z",
            "url": "https://files.pythonhosted.org/packages/bb/88/0f052cddb81dc0e29b220598cf829debd94f6763ad192d878d89e6a9f51d/pyworld_prebuilt-0.3.4.1-cp38-cp38-win_amd64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "ab7f81e703a8470c68f0309bc2a0bd7937650d4f49ef6692678e1f436e4c1722",
                "md5": "a07578469ded26dd316c25721803e4b9",
                "sha256": "df58e4efcd44d6a6e1ae1804695fae158e4427962c065f3e6bb802c2602b7363"
            },
            "downloads": -1,
            "filename": "pyworld_prebuilt-0.3.4.1-cp39-cp39-macosx_10_9_universal2.whl",
            "has_sig": false,
            "md5_digest": "a07578469ded26dd316c25721803e4b9",
            "packagetype": "bdist_wheel",
            "python_version": "cp39",
            "requires_python": null,
            "size": 422043,
            "upload_time": "2024-03-10T17:47:24",
            "upload_time_iso_8601": "2024-03-10T17:47:24.250741Z",
            "url": "https://files.pythonhosted.org/packages/ab/7f/81e703a8470c68f0309bc2a0bd7937650d4f49ef6692678e1f436e4c1722/pyworld_prebuilt-0.3.4.1-cp39-cp39-macosx_10_9_universal2.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "ccdd0d5702ecdaf4f15d361ba84f89e506a8483e0c0219534d4d4e7bb29b72fa",
                "md5": "64ae29e88717a01c37285a6c9e7c5a2a",
                "sha256": "2f30e568a543b02fcf2b922f95c391b93b540fc4b213a7ed7edbbd9e02c9ff7d"
            },
            "downloads": -1,
            "filename": "pyworld_prebuilt-0.3.4.1-cp39-cp39-macosx_10_9_x86_64.whl",
            "has_sig": false,
            "md5_digest": "64ae29e88717a01c37285a6c9e7c5a2a",
            "packagetype": "bdist_wheel",
            "python_version": "cp39",
            "requires_python": null,
            "size": 230727,
            "upload_time": "2024-03-10T17:47:25",
            "upload_time_iso_8601": "2024-03-10T17:47:25.385656Z",
            "url": "https://files.pythonhosted.org/packages/cc/dd/0d5702ecdaf4f15d361ba84f89e506a8483e0c0219534d4d4e7bb29b72fa/pyworld_prebuilt-0.3.4.1-cp39-cp39-macosx_10_9_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "95177c0a48b5e77624c87344700ab30cf1ee70c39c0ef50c3401d06981ec04a1",
                "md5": "ba1b8d5df05f3051d93dae72eda7fbb8",
                "sha256": "4b0c019cd362b7f7feb014a1b784952d41fff962c6cc4586ff22b7f332139eca"
            },
            "downloads": -1,
            "filename": "pyworld_prebuilt-0.3.4.1-cp39-cp39-macosx_11_0_arm64.whl",
            "has_sig": false,
            "md5_digest": "ba1b8d5df05f3051d93dae72eda7fbb8",
            "packagetype": "bdist_wheel",
            "python_version": "cp39",
            "requires_python": null,
            "size": 196116,
            "upload_time": "2024-03-10T17:47:26",
            "upload_time_iso_8601": "2024-03-10T17:47:26.499948Z",
            "url": "https://files.pythonhosted.org/packages/95/17/7c0a48b5e77624c87344700ab30cf1ee70c39c0ef50c3401d06981ec04a1/pyworld_prebuilt-0.3.4.1-cp39-cp39-macosx_11_0_arm64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "15c91939d7b5e3b811b68625f6c4384f2362db433f3b4029706e2ce19c3e6884",
                "md5": "3daa0b8014a765b264bcabe586909acf",
                "sha256": "96aae7a4a42e1586dd6c17964aec3ab34b69ed4e545940f6a1a368b4b4879a90"
            },
            "downloads": -1,
            "filename": "pyworld_prebuilt-0.3.4.1-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
            "has_sig": false,
            "md5_digest": "3daa0b8014a765b264bcabe586909acf",
            "packagetype": "bdist_wheel",
            "python_version": "cp39",
            "requires_python": null,
            "size": 961342,
            "upload_time": "2024-03-10T17:47:28",
            "upload_time_iso_8601": "2024-03-10T17:47:28.274896Z",
            "url": "https://files.pythonhosted.org/packages/15/c9/1939d7b5e3b811b68625f6c4384f2362db433f3b4029706e2ce19c3e6884/pyworld_prebuilt-0.3.4.1-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "7785448cbbadd96dc1de4ea217cb19c8b84f53b8ffb43e044eb184910ec80efe",
                "md5": "1e09b671eaf5419c92988138b0d2021b",
                "sha256": "4d5e4b402bf15cff135ed3d97fa2c1bfe9cc567baf67368a575dd501e33a7080"
            },
            "downloads": -1,
            "filename": "pyworld_prebuilt-0.3.4.1-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "has_sig": false,
            "md5_digest": "1e09b671eaf5419c92988138b0d2021b",
            "packagetype": "bdist_wheel",
            "python_version": "cp39",
            "requires_python": null,
            "size": 1005840,
            "upload_time": "2024-03-10T17:47:29",
            "upload_time_iso_8601": "2024-03-10T17:47:29.484691Z",
            "url": "https://files.pythonhosted.org/packages/77/85/448cbbadd96dc1de4ea217cb19c8b84f53b8ffb43e044eb184910ec80efe/pyworld_prebuilt-0.3.4.1-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "b2bed2b219240b1435d2d5e5694763c7de6708a3ae89b6b04108f5ab0a198329",
                "md5": "0c261b49ae46efacaeb5997ab9278e65",
                "sha256": "3d8e5a2299f4a9857bf3164a067e6b38d59e1f2bedfc8b982594946d59028ca4"
            },
            "downloads": -1,
            "filename": "pyworld_prebuilt-0.3.4.1-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl",
            "has_sig": false,
            "md5_digest": "0c261b49ae46efacaeb5997ab9278e65",
            "packagetype": "bdist_wheel",
            "python_version": "cp39",
            "requires_python": null,
            "size": 958183,
            "upload_time": "2024-03-10T17:47:31",
            "upload_time_iso_8601": "2024-03-10T17:47:31.029354Z",
            "url": "https://files.pythonhosted.org/packages/b2/be/d2b219240b1435d2d5e5694763c7de6708a3ae89b6b04108f5ab0a198329/pyworld_prebuilt-0.3.4.1-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "a7a2ab98dafe83e80f9ce72770e730fc67029524a3bf4b9c72a891cdf9033fc7",
                "md5": "12681796fb0a8ca921f4c7b0b3f7e977",
                "sha256": "732ab7bd33c7364a07857d734798ff482ba6a12493baa119327490ee435ac396"
            },
            "downloads": -1,
            "filename": "pyworld_prebuilt-0.3.4.1-cp39-cp39-win32.whl",
            "has_sig": false,
            "md5_digest": "12681796fb0a8ca921f4c7b0b3f7e977",
            "packagetype": "bdist_wheel",
            "python_version": "cp39",
            "requires_python": null,
            "size": 148920,
            "upload_time": "2024-03-10T17:47:32",
            "upload_time_iso_8601": "2024-03-10T17:47:32.632122Z",
            "url": "https://files.pythonhosted.org/packages/a7/a2/ab98dafe83e80f9ce72770e730fc67029524a3bf4b9c72a891cdf9033fc7/pyworld_prebuilt-0.3.4.1-cp39-cp39-win32.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "9610d0276edae1a6d6bf1cc287649b9fdc3389fe200def7bb1c200bd13983abe",
                "md5": "63647ecf8a0276c9295887ec34981f65",
                "sha256": "579c972ed12b50331ffc9c6ca9f8967c67cad820876c8f0d264bd8c5a225f194"
            },
            "downloads": -1,
            "filename": "pyworld_prebuilt-0.3.4.1-cp39-cp39-win_amd64.whl",
            "has_sig": false,
            "md5_digest": "63647ecf8a0276c9295887ec34981f65",
            "packagetype": "bdist_wheel",
            "python_version": "cp39",
            "requires_python": null,
            "size": 185574,
            "upload_time": "2024-03-10T17:47:33",
            "upload_time_iso_8601": "2024-03-10T17:47:33.763593Z",
            "url": "https://files.pythonhosted.org/packages/96/10/d0276edae1a6d6bf1cc287649b9fdc3389fe200def7bb1c200bd13983abe/pyworld_prebuilt-0.3.4.1-cp39-cp39-win_amd64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "8f24ea9ecf4706e337b639c9aa57c410279dac626f905d17932ef56b49ead305",
                "md5": "c0ce0439d01e3004d1f8ed2c3149ba5b",
                "sha256": "787fd68b1607ccebd972e0fe442b86af7757c52bf184da97d64f9cb689349c1a"
            },
            "downloads": -1,
            "filename": "pyworld-prebuilt-0.3.4.1.tar.gz",
            "has_sig": false,
            "md5_digest": "c0ce0439d01e3004d1f8ed2c3149ba5b",
            "packagetype": "sdist",
            "python_version": "source",
            "requires_python": null,
            "size": 76790,
            "upload_time": "2024-03-10T17:47:34",
            "upload_time_iso_8601": "2024-03-10T17:47:34.967172Z",
            "url": "https://files.pythonhosted.org/packages/8f/24/ea9ecf4706e337b639c9aa57c410279dac626f905d17932ef56b49ead305/pyworld-prebuilt-0.3.4.1.tar.gz",
            "yanked": false,
            "yanked_reason": null
        }
    ],
    "upload_time": "2024-03-10 17:47:34",
    "github": true,
    "gitlab": false,
    "bitbucket": false,
    "codeberg": false,
    "github_user": "tsukumijima",
    "github_project": "pyworld-prebuilt",
    "travis_ci": true,
    "coveralls": false,
    "github_actions": true,
    "appveyor": true,
    "requirements": [
        {
            "name": "numpy",
            "specs": []
        },
        {
            "name": "matplotlib",
            "specs": []
        },
        {
            "name": "argparse",
            "specs": []
        },
        {
            "name": "cython",
            "specs": []
        },
        {
            "name": "pysoundfile",
            "specs": []
        }
    ],
    "lcname": "pyworld-prebuilt"
}
        
Elapsed time: 0.22316s