pyworld-prebuilt


Namepyworld-prebuilt JSON
Version 0.3.4.3 PyPI version JSON
download
home_pagehttps://github.com/tsukumijima/pyworld-prebuilt
SummaryPyWorld: a Python wrapper for WORLD vocoder
upload_time2024-11-30 07:24:00
maintainerNone
docs_urlNone
authorPyworld Contributors
requires_pythonNone
licenseNone
keywords vocoder
VCS
bugtrack_url
requirements No requirements were recorded.
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": null,
    "docs_url": null,
    "requires_python": null,
    "maintainer_email": null,
    "keywords": "vocoder",
    "author": "Pyworld Contributors",
    "author_email": "jeremycchsu@gmail.com",
    "download_url": "https://files.pythonhosted.org/packages/6e/d4/25b019ff64d501f99d7013a1dca2ac84390a7d619e5ce5336d26137040c6/pyworld_prebuilt-0.3.4.3.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": null,
    "summary": "PyWorld: a Python wrapper for WORLD vocoder",
    "version": "0.3.4.3",
    "project_urls": {
        "Homepage": "https://github.com/tsukumijima/pyworld-prebuilt"
    },
    "split_keywords": [
        "vocoder"
    ],
    "urls": [
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "3b19585c2da4f9d51c1a94a2139e76007a194b453986d191589f65dd005c0c96",
                "md5": "89b07dd8037ccbfe79c9fbecbdf65d6e",
                "sha256": "816174c81c6bbd3d8c074800c8f93146e566782c22f849edce739ed735c03dc1"
            },
            "downloads": -1,
            "filename": "pyworld_prebuilt-0.3.4.3-cp310-cp310-macosx_10_9_universal2.whl",
            "has_sig": false,
            "md5_digest": "89b07dd8037ccbfe79c9fbecbdf65d6e",
            "packagetype": "bdist_wheel",
            "python_version": "cp310",
            "requires_python": null,
            "size": 395859,
            "upload_time": "2024-11-30T07:05:23",
            "upload_time_iso_8601": "2024-11-30T07:05:23.423033Z",
            "url": "https://files.pythonhosted.org/packages/3b/19/585c2da4f9d51c1a94a2139e76007a194b453986d191589f65dd005c0c96/pyworld_prebuilt-0.3.4.3-cp310-cp310-macosx_10_9_universal2.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "3e9612ddae9ead1f63e387216a15593a1ae12657f45ec72fb962d3b6a403220f",
                "md5": "d7ff393edf27a67ac979dea1cfb39560",
                "sha256": "cc8e86ee87f48069ffd94508d20f4d25fa7b2064cfe4e3eeba3e63cded2cd1d2"
            },
            "downloads": -1,
            "filename": "pyworld_prebuilt-0.3.4.3-cp310-cp310-macosx_10_9_x86_64.whl",
            "has_sig": false,
            "md5_digest": "d7ff393edf27a67ac979dea1cfb39560",
            "packagetype": "bdist_wheel",
            "python_version": "cp310",
            "requires_python": null,
            "size": 215280,
            "upload_time": "2024-11-30T07:05:56",
            "upload_time_iso_8601": "2024-11-30T07:05:56.971369Z",
            "url": "https://files.pythonhosted.org/packages/3e/96/12ddae9ead1f63e387216a15593a1ae12657f45ec72fb962d3b6a403220f/pyworld_prebuilt-0.3.4.3-cp310-cp310-macosx_10_9_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "afdde97b4eddcf67c700bdb4eeaca882a8da63b75167f321fb335a5473d5c49c",
                "md5": "4569aa6b8657ecdcfe8e8bb12edb9ad4",
                "sha256": "6aab6384c2559d7f7c30d4b1168829348b40599543f2322575a18c497d5e0ef6"
            },
            "downloads": -1,
            "filename": "pyworld_prebuilt-0.3.4.3-cp310-cp310-macosx_11_0_arm64.whl",
            "has_sig": false,
            "md5_digest": "4569aa6b8657ecdcfe8e8bb12edb9ad4",
            "packagetype": "bdist_wheel",
            "python_version": "cp310",
            "requires_python": null,
            "size": 185842,
            "upload_time": "2024-11-30T07:06:16",
            "upload_time_iso_8601": "2024-11-30T07:06:16.973450Z",
            "url": "https://files.pythonhosted.org/packages/af/dd/e97b4eddcf67c700bdb4eeaca882a8da63b75167f321fb335a5473d5c49c/pyworld_prebuilt-0.3.4.3-cp310-cp310-macosx_11_0_arm64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "c87ae1f039609cf46a48ba35c1e4e712eadb2717761f94b49697031abb13fbbc",
                "md5": "6d9c707f227a29f5dd08fae2bac32761",
                "sha256": "3eee437bd0ad6c35788b95821d5e5611f40ddf079613b0205adb40fff367d509"
            },
            "downloads": -1,
            "filename": "pyworld_prebuilt-0.3.4.3-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
            "has_sig": false,
            "md5_digest": "6d9c707f227a29f5dd08fae2bac32761",
            "packagetype": "bdist_wheel",
            "python_version": "cp310",
            "requires_python": null,
            "size": 949661,
            "upload_time": "2024-11-30T07:06:58",
            "upload_time_iso_8601": "2024-11-30T07:06:58.408511Z",
            "url": "https://files.pythonhosted.org/packages/c8/7a/e1f039609cf46a48ba35c1e4e712eadb2717761f94b49697031abb13fbbc/pyworld_prebuilt-0.3.4.3-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "ac5fb11f7f7e06c38f279b86c692405642d77f6d049edb7af1c67dc1759549dc",
                "md5": "e7ca999015c4b28602269421519e620e",
                "sha256": "76bc4818c2a07cf77f6efd95339b36a81eb55bb7db3ad1b4cde42b102dfb086d"
            },
            "downloads": -1,
            "filename": "pyworld_prebuilt-0.3.4.3-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "has_sig": false,
            "md5_digest": "e7ca999015c4b28602269421519e620e",
            "packagetype": "bdist_wheel",
            "python_version": "cp310",
            "requires_python": null,
            "size": 993367,
            "upload_time": "2024-11-30T07:07:39",
            "upload_time_iso_8601": "2024-11-30T07:07:39.075938Z",
            "url": "https://files.pythonhosted.org/packages/ac/5f/b11f7f7e06c38f279b86c692405642d77f6d049edb7af1c67dc1759549dc/pyworld_prebuilt-0.3.4.3-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "d7cb4e55b0969817fbad2aa726a62e0ea06a6fe86e6064d72494415e0c25d3c1",
                "md5": "59d9795573d51d5c40fb3004970432da",
                "sha256": "253cfd0855ca435c2f89f8ae00421e3a6a209e2fd5c0b95b272519c2e549ab3a"
            },
            "downloads": -1,
            "filename": "pyworld_prebuilt-0.3.4.3-cp310-cp310-win32.whl",
            "has_sig": false,
            "md5_digest": "59d9795573d51d5c40fb3004970432da",
            "packagetype": "bdist_wheel",
            "python_version": "cp310",
            "requires_python": null,
            "size": 148811,
            "upload_time": "2024-11-30T07:08:24",
            "upload_time_iso_8601": "2024-11-30T07:08:24.613314Z",
            "url": "https://files.pythonhosted.org/packages/d7/cb/4e55b0969817fbad2aa726a62e0ea06a6fe86e6064d72494415e0c25d3c1/pyworld_prebuilt-0.3.4.3-cp310-cp310-win32.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "ecd072dbb238e341b5e1c800cf0219bcd62a508c02fbcfc25a026f4664477bbe",
                "md5": "fabb57cedf022354d5279fec451ba6de",
                "sha256": "fb965c660ce012de496291461d2fd72b45bbf96391eea469b2fcafbf3af3fddd"
            },
            "downloads": -1,
            "filename": "pyworld_prebuilt-0.3.4.3-cp310-cp310-win_amd64.whl",
            "has_sig": false,
            "md5_digest": "fabb57cedf022354d5279fec451ba6de",
            "packagetype": "bdist_wheel",
            "python_version": "cp310",
            "requires_python": null,
            "size": 185264,
            "upload_time": "2024-11-30T07:08:42",
            "upload_time_iso_8601": "2024-11-30T07:08:42.901076Z",
            "url": "https://files.pythonhosted.org/packages/ec/d0/72dbb238e341b5e1c800cf0219bcd62a508c02fbcfc25a026f4664477bbe/pyworld_prebuilt-0.3.4.3-cp310-cp310-win_amd64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "b1cb7512bef2b3b347724614e4665690b4d97215f995506986d3f68defe2a631",
                "md5": "02d98548a9b2b3dccccc00e6cdf6cbb4",
                "sha256": "b94b6b8af1ff12f823de74bdad6c7c4b235841b314f833e43bc17642581448eb"
            },
            "downloads": -1,
            "filename": "pyworld_prebuilt-0.3.4.3-cp310-cp310-win_arm64.whl",
            "has_sig": false,
            "md5_digest": "02d98548a9b2b3dccccc00e6cdf6cbb4",
            "packagetype": "bdist_wheel",
            "python_version": "cp310",
            "requires_python": null,
            "size": 149963,
            "upload_time": "2024-11-30T07:09:19",
            "upload_time_iso_8601": "2024-11-30T07:09:19.012365Z",
            "url": "https://files.pythonhosted.org/packages/b1/cb/7512bef2b3b347724614e4665690b4d97215f995506986d3f68defe2a631/pyworld_prebuilt-0.3.4.3-cp310-cp310-win_arm64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "39c26897e7cb2c7c992131378af3e93ab9b2da324dd042cf57174779befc8187",
                "md5": "f33005d179fa8bead5ae22f4f357995f",
                "sha256": "577c27fb368112bfb39eff1668a00d57ba4d6ef9a85689815a769a82e3360bb4"
            },
            "downloads": -1,
            "filename": "pyworld_prebuilt-0.3.4.3-cp311-cp311-macosx_10_9_universal2.whl",
            "has_sig": false,
            "md5_digest": "f33005d179fa8bead5ae22f4f357995f",
            "packagetype": "bdist_wheel",
            "python_version": "cp311",
            "requires_python": null,
            "size": 396450,
            "upload_time": "2024-11-30T07:10:06",
            "upload_time_iso_8601": "2024-11-30T07:10:06.182944Z",
            "url": "https://files.pythonhosted.org/packages/39/c2/6897e7cb2c7c992131378af3e93ab9b2da324dd042cf57174779befc8187/pyworld_prebuilt-0.3.4.3-cp311-cp311-macosx_10_9_universal2.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "201dd0e56d23c360d222579726ac24aafea9cc4a758329584d0584d6e3a498e0",
                "md5": "149a07feb2694558f266f562627ff5ce",
                "sha256": "135e3b48c159f22bcdec67d13984b3fba3a25dc41b8ff5eff81abfe76b83e500"
            },
            "downloads": -1,
            "filename": "pyworld_prebuilt-0.3.4.3-cp311-cp311-macosx_10_9_x86_64.whl",
            "has_sig": false,
            "md5_digest": "149a07feb2694558f266f562627ff5ce",
            "packagetype": "bdist_wheel",
            "python_version": "cp311",
            "requires_python": null,
            "size": 215462,
            "upload_time": "2024-11-30T07:10:13",
            "upload_time_iso_8601": "2024-11-30T07:10:13.755579Z",
            "url": "https://files.pythonhosted.org/packages/20/1d/d0e56d23c360d222579726ac24aafea9cc4a758329584d0584d6e3a498e0/pyworld_prebuilt-0.3.4.3-cp311-cp311-macosx_10_9_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "b365e1d11be1344fcd75e30be141f2c680a50fa5feb49455ef69e589687c5926",
                "md5": "14d7a0594364fadad8d4a34bf95070e6",
                "sha256": "1397c8a2f9501a45301ec98fddacc19682a73598f1018a22b23625e548e3d4ab"
            },
            "downloads": -1,
            "filename": "pyworld_prebuilt-0.3.4.3-cp311-cp311-macosx_11_0_arm64.whl",
            "has_sig": false,
            "md5_digest": "14d7a0594364fadad8d4a34bf95070e6",
            "packagetype": "bdist_wheel",
            "python_version": "cp311",
            "requires_python": null,
            "size": 186100,
            "upload_time": "2024-11-30T07:10:50",
            "upload_time_iso_8601": "2024-11-30T07:10:50.732366Z",
            "url": "https://files.pythonhosted.org/packages/b3/65/e1d11be1344fcd75e30be141f2c680a50fa5feb49455ef69e589687c5926/pyworld_prebuilt-0.3.4.3-cp311-cp311-macosx_11_0_arm64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "42dbfd034197ee7e85fb6af416365833fc2222d2b54273c7bddef3d56e6ade79",
                "md5": "fcfe8790558a5f7d52243ac924128f7c",
                "sha256": "0e087109663d5e05c4d61c41fe09d9897e00def2d65df60ef28e6b6f2521e8a6"
            },
            "downloads": -1,
            "filename": "pyworld_prebuilt-0.3.4.3-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
            "has_sig": false,
            "md5_digest": "fcfe8790558a5f7d52243ac924128f7c",
            "packagetype": "bdist_wheel",
            "python_version": "cp311",
            "requires_python": null,
            "size": 1011352,
            "upload_time": "2024-11-30T07:10:54",
            "upload_time_iso_8601": "2024-11-30T07:10:54.170059Z",
            "url": "https://files.pythonhosted.org/packages/42/db/fd034197ee7e85fb6af416365833fc2222d2b54273c7bddef3d56e6ade79/pyworld_prebuilt-0.3.4.3-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "f4838a7363a6ed94757575f187d726af98804947ca16afa5abfc8607dc7e52b9",
                "md5": "bdeb0fc01c50c6003c5f5fc3ce8c09fb",
                "sha256": "182a139a6e3ef55f2a14ce67f5a3dad1d33aae0d69ed82e9cad8869d60ad1b9c"
            },
            "downloads": -1,
            "filename": "pyworld_prebuilt-0.3.4.3-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "has_sig": false,
            "md5_digest": "bdeb0fc01c50c6003c5f5fc3ce8c09fb",
            "packagetype": "bdist_wheel",
            "python_version": "cp311",
            "requires_python": null,
            "size": 1051895,
            "upload_time": "2024-11-30T07:10:57",
            "upload_time_iso_8601": "2024-11-30T07:10:57.776891Z",
            "url": "https://files.pythonhosted.org/packages/f4/83/8a7363a6ed94757575f187d726af98804947ca16afa5abfc8607dc7e52b9/pyworld_prebuilt-0.3.4.3-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "1bb972ee9785a33faac9e6d0e3a4c1b72af02344c31964fccb1af5eb5e7ff254",
                "md5": "234c862f29247a6eace52adfdbf0e86c",
                "sha256": "e9f77ee294426a12f9c736c614ea40ba6cd78ec6ebc54936359a56c99a635d70"
            },
            "downloads": -1,
            "filename": "pyworld_prebuilt-0.3.4.3-cp311-cp311-win32.whl",
            "has_sig": false,
            "md5_digest": "234c862f29247a6eace52adfdbf0e86c",
            "packagetype": "bdist_wheel",
            "python_version": "cp311",
            "requires_python": null,
            "size": 148274,
            "upload_time": "2024-11-30T07:11:00",
            "upload_time_iso_8601": "2024-11-30T07:11:00.536902Z",
            "url": "https://files.pythonhosted.org/packages/1b/b9/72ee9785a33faac9e6d0e3a4c1b72af02344c31964fccb1af5eb5e7ff254/pyworld_prebuilt-0.3.4.3-cp311-cp311-win32.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "be52fef88af33493cc436fcd746afff424a49cc3a812c40fa4a6b76f39fe2524",
                "md5": "57ec00802599d78fe061e520bf987151",
                "sha256": "2e2395a66977a6b6041822d2d5af06e8ac92c42e639bc8058b6878acfa0e1b26"
            },
            "downloads": -1,
            "filename": "pyworld_prebuilt-0.3.4.3-cp311-cp311-win_amd64.whl",
            "has_sig": false,
            "md5_digest": "57ec00802599d78fe061e520bf987151",
            "packagetype": "bdist_wheel",
            "python_version": "cp311",
            "requires_python": null,
            "size": 185222,
            "upload_time": "2024-11-30T07:11:23",
            "upload_time_iso_8601": "2024-11-30T07:11:23.461496Z",
            "url": "https://files.pythonhosted.org/packages/be/52/fef88af33493cc436fcd746afff424a49cc3a812c40fa4a6b76f39fe2524/pyworld_prebuilt-0.3.4.3-cp311-cp311-win_amd64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "083825a5b171d70322328d988d50a2fccf8d6bfa308af5c0985a7455a293e01b",
                "md5": "5f63e69fae2c5e9d76c4e7926010ce39",
                "sha256": "a08fb3c3253119fd6295b534e36bba644de5fea3005ec2e9bf3756ecc225df26"
            },
            "downloads": -1,
            "filename": "pyworld_prebuilt-0.3.4.3-cp311-cp311-win_arm64.whl",
            "has_sig": false,
            "md5_digest": "5f63e69fae2c5e9d76c4e7926010ce39",
            "packagetype": "bdist_wheel",
            "python_version": "cp311",
            "requires_python": null,
            "size": 150322,
            "upload_time": "2024-11-30T07:12:13",
            "upload_time_iso_8601": "2024-11-30T07:12:13.301071Z",
            "url": "https://files.pythonhosted.org/packages/08/38/25a5b171d70322328d988d50a2fccf8d6bfa308af5c0985a7455a293e01b/pyworld_prebuilt-0.3.4.3-cp311-cp311-win_arm64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "f53739ee3199da3921e634a7f984608ff7dee5526235ab65b348dc02d8711d40",
                "md5": "85e4c5b46977a2d26f150a908a2319da",
                "sha256": "3f762325cd66365b7187eda551315f65c51270e5388bc6709e8a969ac9c75458"
            },
            "downloads": -1,
            "filename": "pyworld_prebuilt-0.3.4.3-cp312-cp312-macosx_10_13_universal2.whl",
            "has_sig": false,
            "md5_digest": "85e4c5b46977a2d26f150a908a2319da",
            "packagetype": "bdist_wheel",
            "python_version": "cp312",
            "requires_python": null,
            "size": 395407,
            "upload_time": "2024-11-30T07:12:55",
            "upload_time_iso_8601": "2024-11-30T07:12:55.096845Z",
            "url": "https://files.pythonhosted.org/packages/f5/37/39ee3199da3921e634a7f984608ff7dee5526235ab65b348dc02d8711d40/pyworld_prebuilt-0.3.4.3-cp312-cp312-macosx_10_13_universal2.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "96a813658103670c14717587a851a65662d607f2e104c470d1aab5b526ea569e",
                "md5": "1714c9029364f543b7b89747287e334b",
                "sha256": "c55a50a014d37ad3feef06f6286e68a6917e0edc1aad513c19420252dd962c2f"
            },
            "downloads": -1,
            "filename": "pyworld_prebuilt-0.3.4.3-cp312-cp312-macosx_10_13_x86_64.whl",
            "has_sig": false,
            "md5_digest": "1714c9029364f543b7b89747287e334b",
            "packagetype": "bdist_wheel",
            "python_version": "cp312",
            "requires_python": null,
            "size": 214307,
            "upload_time": "2024-11-30T07:13:39",
            "upload_time_iso_8601": "2024-11-30T07:13:39.785904Z",
            "url": "https://files.pythonhosted.org/packages/96/a8/13658103670c14717587a851a65662d607f2e104c470d1aab5b526ea569e/pyworld_prebuilt-0.3.4.3-cp312-cp312-macosx_10_13_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "a6f03369317e6971ac18629243a1cfd9004eedb3145b0542a96266f1d9e3c3d8",
                "md5": "2b0400582c2aa379eddebc506245271a",
                "sha256": "c0955295e2994d60326f37a3dd67239cb076fd86942c2805342004dd6007d8ea"
            },
            "downloads": -1,
            "filename": "pyworld_prebuilt-0.3.4.3-cp312-cp312-macosx_11_0_arm64.whl",
            "has_sig": false,
            "md5_digest": "2b0400582c2aa379eddebc506245271a",
            "packagetype": "bdist_wheel",
            "python_version": "cp312",
            "requires_python": null,
            "size": 186703,
            "upload_time": "2024-11-30T07:14:04",
            "upload_time_iso_8601": "2024-11-30T07:14:04.184859Z",
            "url": "https://files.pythonhosted.org/packages/a6/f0/3369317e6971ac18629243a1cfd9004eedb3145b0542a96266f1d9e3c3d8/pyworld_prebuilt-0.3.4.3-cp312-cp312-macosx_11_0_arm64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "6ab7ac14f10515fd9f793eca49fb9ee426983304aa907fdb2b906172372eafea",
                "md5": "61709bfd651cc3e616a1956f00d1602d",
                "sha256": "1b0c6d20040044a7f8089e7208c837b68e9a1bd82fd5358c20acbed2ccd3455b"
            },
            "downloads": -1,
            "filename": "pyworld_prebuilt-0.3.4.3-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
            "has_sig": false,
            "md5_digest": "61709bfd651cc3e616a1956f00d1602d",
            "packagetype": "bdist_wheel",
            "python_version": "cp312",
            "requires_python": null,
            "size": 977480,
            "upload_time": "2024-11-30T07:14:46",
            "upload_time_iso_8601": "2024-11-30T07:14:46.604076Z",
            "url": "https://files.pythonhosted.org/packages/6a/b7/ac14f10515fd9f793eca49fb9ee426983304aa907fdb2b906172372eafea/pyworld_prebuilt-0.3.4.3-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "d13896e944867437b8533bbade41da7888c6cdea33a6414c822cb2bb13675856",
                "md5": "8d176b83d4ffe61855ba9b3778b845d8",
                "sha256": "ee62d7f9938c699424f6d69fd41d36a22e6b3488b3bf139bdf81465bd9ca1041"
            },
            "downloads": -1,
            "filename": "pyworld_prebuilt-0.3.4.3-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "has_sig": false,
            "md5_digest": "8d176b83d4ffe61855ba9b3778b845d8",
            "packagetype": "bdist_wheel",
            "python_version": "cp312",
            "requires_python": null,
            "size": 1019627,
            "upload_time": "2024-11-30T07:15:35",
            "upload_time_iso_8601": "2024-11-30T07:15:35.788535Z",
            "url": "https://files.pythonhosted.org/packages/d1/38/96e944867437b8533bbade41da7888c6cdea33a6414c822cb2bb13675856/pyworld_prebuilt-0.3.4.3-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "1043bcca6ba6ca791f0eb946db642368e1e891a1932efb6e4ee0a6a4f8ace4d1",
                "md5": "564f683a9ee17e21d0afa99b0331a871",
                "sha256": "f1e047e6908420820e4c82c40588c0b50ba20b3ed05568f99f5ae8c5109ddcb7"
            },
            "downloads": -1,
            "filename": "pyworld_prebuilt-0.3.4.3-cp312-cp312-win32.whl",
            "has_sig": false,
            "md5_digest": "564f683a9ee17e21d0afa99b0331a871",
            "packagetype": "bdist_wheel",
            "python_version": "cp312",
            "requires_python": null,
            "size": 145772,
            "upload_time": "2024-11-30T07:15:54",
            "upload_time_iso_8601": "2024-11-30T07:15:54.540507Z",
            "url": "https://files.pythonhosted.org/packages/10/43/bcca6ba6ca791f0eb946db642368e1e891a1932efb6e4ee0a6a4f8ace4d1/pyworld_prebuilt-0.3.4.3-cp312-cp312-win32.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "25065e9873b3d4708400ec5c5045aa1d1d46158aab641112a724ebd420ef7fcd",
                "md5": "6bd8428de9bf1f6c45661c5ea31cd2c2",
                "sha256": "49b67fa74d1dddd97c33feea20f782af47783f21b0b3a15692ff5dc845840a99"
            },
            "downloads": -1,
            "filename": "pyworld_prebuilt-0.3.4.3-cp312-cp312-win_amd64.whl",
            "has_sig": false,
            "md5_digest": "6bd8428de9bf1f6c45661c5ea31cd2c2",
            "packagetype": "bdist_wheel",
            "python_version": "cp312",
            "requires_python": null,
            "size": 182124,
            "upload_time": "2024-11-30T07:15:58",
            "upload_time_iso_8601": "2024-11-30T07:15:58.078669Z",
            "url": "https://files.pythonhosted.org/packages/25/06/5e9873b3d4708400ec5c5045aa1d1d46158aab641112a724ebd420ef7fcd/pyworld_prebuilt-0.3.4.3-cp312-cp312-win_amd64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "fc5f9c697413dbd48756caca4ccd046bcf18b518555ece9350c1c70537492481",
                "md5": "098ab43761f93c8d590571d68e702bf0",
                "sha256": "20d9e502249d730496737e735ae2ebc2fd47f0fba538206af2ec80d82133a67f"
            },
            "downloads": -1,
            "filename": "pyworld_prebuilt-0.3.4.3-cp312-cp312-win_arm64.whl",
            "has_sig": false,
            "md5_digest": "098ab43761f93c8d590571d68e702bf0",
            "packagetype": "bdist_wheel",
            "python_version": "cp312",
            "requires_python": null,
            "size": 146269,
            "upload_time": "2024-11-30T07:16:00",
            "upload_time_iso_8601": "2024-11-30T07:16:00.806954Z",
            "url": "https://files.pythonhosted.org/packages/fc/5f/9c697413dbd48756caca4ccd046bcf18b518555ece9350c1c70537492481/pyworld_prebuilt-0.3.4.3-cp312-cp312-win_arm64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "be32e04186432b985c0e41133c7f491a94d7809b9853cc78820ddb2770e14957",
                "md5": "7aa3447ef6e739770db707cb3ea4b9f5",
                "sha256": "4928307967c4af87d6e0b340119296497b63de4d3406063d8b518619663fc064"
            },
            "downloads": -1,
            "filename": "pyworld_prebuilt-0.3.4.3-cp313-cp313-macosx_10_13_universal2.whl",
            "has_sig": false,
            "md5_digest": "7aa3447ef6e739770db707cb3ea4b9f5",
            "packagetype": "bdist_wheel",
            "python_version": "cp313",
            "requires_python": null,
            "size": 390492,
            "upload_time": "2024-11-30T07:16:03",
            "upload_time_iso_8601": "2024-11-30T07:16:03.953473Z",
            "url": "https://files.pythonhosted.org/packages/be/32/e04186432b985c0e41133c7f491a94d7809b9853cc78820ddb2770e14957/pyworld_prebuilt-0.3.4.3-cp313-cp313-macosx_10_13_universal2.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "5e982f4f71ec519641fa3253a9979b2ea993f3686f15e62b6069cdedefb2c034",
                "md5": "03e0df214ba3471acf02ed028ec47555",
                "sha256": "708775cce21ba153967f412dada8222c233acf3e0dc54784e031a9090375442f"
            },
            "downloads": -1,
            "filename": "pyworld_prebuilt-0.3.4.3-cp313-cp313-macosx_10_13_x86_64.whl",
            "has_sig": false,
            "md5_digest": "03e0df214ba3471acf02ed028ec47555",
            "packagetype": "bdist_wheel",
            "python_version": "cp313",
            "requires_python": null,
            "size": 211497,
            "upload_time": "2024-11-30T07:16:07",
            "upload_time_iso_8601": "2024-11-30T07:16:07.322404Z",
            "url": "https://files.pythonhosted.org/packages/5e/98/2f4f71ec519641fa3253a9979b2ea993f3686f15e62b6069cdedefb2c034/pyworld_prebuilt-0.3.4.3-cp313-cp313-macosx_10_13_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "2ea39a6bdaaa6f817e255ebec21a0d36cb5e8b76a599e01f469055a3281928a8",
                "md5": "75f4ac5877c4d7c902d3a4029ea24add",
                "sha256": "89078a3c72a53302208f7acf24f8386e612236251020dc9cd4485718e2055f48"
            },
            "downloads": -1,
            "filename": "pyworld_prebuilt-0.3.4.3-cp313-cp313-macosx_11_0_arm64.whl",
            "has_sig": false,
            "md5_digest": "75f4ac5877c4d7c902d3a4029ea24add",
            "packagetype": "bdist_wheel",
            "python_version": "cp313",
            "requires_python": null,
            "size": 184344,
            "upload_time": "2024-11-30T07:17:00",
            "upload_time_iso_8601": "2024-11-30T07:17:00.644703Z",
            "url": "https://files.pythonhosted.org/packages/2e/a3/9a6bdaaa6f817e255ebec21a0d36cb5e8b76a599e01f469055a3281928a8/pyworld_prebuilt-0.3.4.3-cp313-cp313-macosx_11_0_arm64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "f4755a1be90ab825b7c84fbac752e5faac1c3d6936e4527601cad9937f359c8c",
                "md5": "38b9422bfd5953be86717cc321e66c2c",
                "sha256": "6b5ed0eb1d5b55e032b1d06f1c7e6072087581320260c55c878e50e0480aea86"
            },
            "downloads": -1,
            "filename": "pyworld_prebuilt-0.3.4.3-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
            "has_sig": false,
            "md5_digest": "38b9422bfd5953be86717cc321e66c2c",
            "packagetype": "bdist_wheel",
            "python_version": "cp313",
            "requires_python": null,
            "size": 975218,
            "upload_time": "2024-11-30T07:17:29",
            "upload_time_iso_8601": "2024-11-30T07:17:29.099450Z",
            "url": "https://files.pythonhosted.org/packages/f4/75/5a1be90ab825b7c84fbac752e5faac1c3d6936e4527601cad9937f359c8c/pyworld_prebuilt-0.3.4.3-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "062ae0469a7fbeff092439f89bf23d998f274d4dccd032e3387d9903c028976f",
                "md5": "dc1a56550b921d84248fa805916dbadd",
                "sha256": "e1c08ff54e321b9c85259b659f19f3ddb55cc40d1a665a78fa32ac8b96e3b1cd"
            },
            "downloads": -1,
            "filename": "pyworld_prebuilt-0.3.4.3-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "has_sig": false,
            "md5_digest": "dc1a56550b921d84248fa805916dbadd",
            "packagetype": "bdist_wheel",
            "python_version": "cp313",
            "requires_python": null,
            "size": 1019341,
            "upload_time": "2024-11-30T07:18:12",
            "upload_time_iso_8601": "2024-11-30T07:18:12.120798Z",
            "url": "https://files.pythonhosted.org/packages/06/2a/e0469a7fbeff092439f89bf23d998f274d4dccd032e3387d9903c028976f/pyworld_prebuilt-0.3.4.3-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "942edbf9b14f72f10251fdd0f1870f2528a7f2866e0083b1dcfd507f162ef5bd",
                "md5": "b563142e024812ebf237072624c031d5",
                "sha256": "f7916a732fc94445cbe63aff72ae1ad465a55e2714689851a386de078d9b3d56"
            },
            "downloads": -1,
            "filename": "pyworld_prebuilt-0.3.4.3-cp313-cp313-win32.whl",
            "has_sig": false,
            "md5_digest": "b563142e024812ebf237072624c031d5",
            "packagetype": "bdist_wheel",
            "python_version": "cp313",
            "requires_python": null,
            "size": 145442,
            "upload_time": "2024-11-30T07:18:32",
            "upload_time_iso_8601": "2024-11-30T07:18:32.813818Z",
            "url": "https://files.pythonhosted.org/packages/94/2e/dbf9b14f72f10251fdd0f1870f2528a7f2866e0083b1dcfd507f162ef5bd/pyworld_prebuilt-0.3.4.3-cp313-cp313-win32.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "697d35b7779513148725f8b26c0cc39e4054f033a501b9d6310c1b0a12db1c6b",
                "md5": "df9aa621e0235ba18bb7d0a2619d3f2c",
                "sha256": "cb22a43d4799f5cfcba027a489c0308e7c799cf4bcccc8879d5a4400b87dcb70"
            },
            "downloads": -1,
            "filename": "pyworld_prebuilt-0.3.4.3-cp313-cp313-win_amd64.whl",
            "has_sig": false,
            "md5_digest": "df9aa621e0235ba18bb7d0a2619d3f2c",
            "packagetype": "bdist_wheel",
            "python_version": "cp313",
            "requires_python": null,
            "size": 181888,
            "upload_time": "2024-11-30T07:19:15",
            "upload_time_iso_8601": "2024-11-30T07:19:15.690332Z",
            "url": "https://files.pythonhosted.org/packages/69/7d/35b7779513148725f8b26c0cc39e4054f033a501b9d6310c1b0a12db1c6b/pyworld_prebuilt-0.3.4.3-cp313-cp313-win_amd64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "04edee2f6442f277e6fdc8df9809128f1ae7024de31e4892061409e695916ea2",
                "md5": "52933e6393fe8b62a8c361d023a28a88",
                "sha256": "c2ef06469a1f7116abe48d19e94589c80320283339502b22c0012b373ff3ded2"
            },
            "downloads": -1,
            "filename": "pyworld_prebuilt-0.3.4.3-cp313-cp313-win_arm64.whl",
            "has_sig": false,
            "md5_digest": "52933e6393fe8b62a8c361d023a28a88",
            "packagetype": "bdist_wheel",
            "python_version": "cp313",
            "requires_python": null,
            "size": 146078,
            "upload_time": "2024-11-30T07:19:46",
            "upload_time_iso_8601": "2024-11-30T07:19:46.008051Z",
            "url": "https://files.pythonhosted.org/packages/04/ed/ee2f6442f277e6fdc8df9809128f1ae7024de31e4892061409e695916ea2/pyworld_prebuilt-0.3.4.3-cp313-cp313-win_arm64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "b78f6491331964b1009ba56ce28dfea373a25968628ed3a0d56b99db51bc9ac0",
                "md5": "e4f50f6b2f765e39f95c52d60f307543",
                "sha256": "ba5a812e35f9f5a1a502ce1e6ef6101a695ce3adf3e88a1529a7e2ffdb70933a"
            },
            "downloads": -1,
            "filename": "pyworld_prebuilt-0.3.4.3-cp38-cp38-macosx_10_9_universal2.whl",
            "has_sig": false,
            "md5_digest": "e4f50f6b2f765e39f95c52d60f307543",
            "packagetype": "bdist_wheel",
            "python_version": "cp38",
            "requires_python": null,
            "size": 392796,
            "upload_time": "2024-11-30T07:20:07",
            "upload_time_iso_8601": "2024-11-30T07:20:07.587873Z",
            "url": "https://files.pythonhosted.org/packages/b7/8f/6491331964b1009ba56ce28dfea373a25968628ed3a0d56b99db51bc9ac0/pyworld_prebuilt-0.3.4.3-cp38-cp38-macosx_10_9_universal2.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "ba4b853fa51a7e1737f388bb61e6d815e92d633c6dad648228fe9d81e61acb59",
                "md5": "e54920dc1b738eff2966f093bb3d5c5b",
                "sha256": "1b727db0867c0e86581486e4a4688d7dd9a73c51cc29b06970aa64eca8f5b3c6"
            },
            "downloads": -1,
            "filename": "pyworld_prebuilt-0.3.4.3-cp38-cp38-macosx_10_9_x86_64.whl",
            "has_sig": false,
            "md5_digest": "e54920dc1b738eff2966f093bb3d5c5b",
            "packagetype": "bdist_wheel",
            "python_version": "cp38",
            "requires_python": null,
            "size": 212938,
            "upload_time": "2024-11-30T07:20:44",
            "upload_time_iso_8601": "2024-11-30T07:20:44.024457Z",
            "url": "https://files.pythonhosted.org/packages/ba/4b/853fa51a7e1737f388bb61e6d815e92d633c6dad648228fe9d81e61acb59/pyworld_prebuilt-0.3.4.3-cp38-cp38-macosx_10_9_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "841da564ee049c077eea68201cf187b02daa81e64701495a8162926f01010468",
                "md5": "cd28f25a92328c7a8fe248803b12faf7",
                "sha256": "6007e6108419a8bccb214bf1cb386ac0eda1311b5029e3422bb12242980736f2"
            },
            "downloads": -1,
            "filename": "pyworld_prebuilt-0.3.4.3-cp38-cp38-macosx_11_0_arm64.whl",
            "has_sig": false,
            "md5_digest": "cd28f25a92328c7a8fe248803b12faf7",
            "packagetype": "bdist_wheel",
            "python_version": "cp38",
            "requires_python": null,
            "size": 185224,
            "upload_time": "2024-11-30T07:21:00",
            "upload_time_iso_8601": "2024-11-30T07:21:00.696652Z",
            "url": "https://files.pythonhosted.org/packages/84/1d/a564ee049c077eea68201cf187b02daa81e64701495a8162926f01010468/pyworld_prebuilt-0.3.4.3-cp38-cp38-macosx_11_0_arm64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "9469b10eefcf3687872326fc8e2687ab9729dc4572a8980cf3f539c577c1123e",
                "md5": "5320b7da590b8df4ce0125c5fd4ae605",
                "sha256": "635f489e8a4ba4f2440ab676f44d1afa37dbc447d232b09472e3e022f7a05584"
            },
            "downloads": -1,
            "filename": "pyworld_prebuilt-0.3.4.3-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
            "has_sig": false,
            "md5_digest": "5320b7da590b8df4ce0125c5fd4ae605",
            "packagetype": "bdist_wheel",
            "python_version": "cp38",
            "requires_python": null,
            "size": 966032,
            "upload_time": "2024-11-30T07:21:04",
            "upload_time_iso_8601": "2024-11-30T07:21:04.423318Z",
            "url": "https://files.pythonhosted.org/packages/94/69/b10eefcf3687872326fc8e2687ab9729dc4572a8980cf3f539c577c1123e/pyworld_prebuilt-0.3.4.3-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "c4bcf061471cd42ae44d5a9ee0942dcc8017325bbaa0d4127461bdc552331344",
                "md5": "99b0cf77f5410697322639ab4cdbda81",
                "sha256": "2cb59c4513736a0dad103418134ca355b04f8e078f377adc5bf3e88e5933afbe"
            },
            "downloads": -1,
            "filename": "pyworld_prebuilt-0.3.4.3-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "has_sig": false,
            "md5_digest": "99b0cf77f5410697322639ab4cdbda81",
            "packagetype": "bdist_wheel",
            "python_version": "cp38",
            "requires_python": null,
            "size": 1010172,
            "upload_time": "2024-11-30T07:21:06",
            "upload_time_iso_8601": "2024-11-30T07:21:06.250762Z",
            "url": "https://files.pythonhosted.org/packages/c4/bc/f061471cd42ae44d5a9ee0942dcc8017325bbaa0d4127461bdc552331344/pyworld_prebuilt-0.3.4.3-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "05185df1ecc99edf99926b2e0a8d2589acf0c0ff88798ce4b704068a28f77143",
                "md5": "c092e7ffdde2cf752eaba1a6bb882d4b",
                "sha256": "0d4a53935327b5d77716afd7f6c8e4d11753b69196001b6f524241ae511ad25d"
            },
            "downloads": -1,
            "filename": "pyworld_prebuilt-0.3.4.3-cp38-cp38-win32.whl",
            "has_sig": false,
            "md5_digest": "c092e7ffdde2cf752eaba1a6bb882d4b",
            "packagetype": "bdist_wheel",
            "python_version": "cp38",
            "requires_python": null,
            "size": 149391,
            "upload_time": "2024-11-30T07:21:07",
            "upload_time_iso_8601": "2024-11-30T07:21:07.471401Z",
            "url": "https://files.pythonhosted.org/packages/05/18/5df1ecc99edf99926b2e0a8d2589acf0c0ff88798ce4b704068a28f77143/pyworld_prebuilt-0.3.4.3-cp38-cp38-win32.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "af3f5c920b2a572ef4cde96edbaaece74afe2469daa4c33120733c8d0b701b2b",
                "md5": "0d903e69b934eb531219efdc5d185384",
                "sha256": "457ca9dd1b2f8f54e49d5de5685ea647ab4ea30eaa192b86c5ebdb47ff57c6f2"
            },
            "downloads": -1,
            "filename": "pyworld_prebuilt-0.3.4.3-cp38-cp38-win_amd64.whl",
            "has_sig": false,
            "md5_digest": "0d903e69b934eb531219efdc5d185384",
            "packagetype": "bdist_wheel",
            "python_version": "cp38",
            "requires_python": null,
            "size": 185767,
            "upload_time": "2024-11-30T07:21:44",
            "upload_time_iso_8601": "2024-11-30T07:21:44.311040Z",
            "url": "https://files.pythonhosted.org/packages/af/3f/5c920b2a572ef4cde96edbaaece74afe2469daa4c33120733c8d0b701b2b/pyworld_prebuilt-0.3.4.3-cp38-cp38-win_amd64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "e2360292c0bb4eed024c7495de8515e6dd184010c97bb05e20bdf36ffe5d2415",
                "md5": "8167e910b200b20f9f801a549d4fdcf3",
                "sha256": "c1c6af735d2b337db181e5ee3bead40a662eed8842a7e1033a6fbd3604a75000"
            },
            "downloads": -1,
            "filename": "pyworld_prebuilt-0.3.4.3-cp39-cp39-macosx_10_9_universal2.whl",
            "has_sig": false,
            "md5_digest": "8167e910b200b20f9f801a549d4fdcf3",
            "packagetype": "bdist_wheel",
            "python_version": "cp39",
            "requires_python": null,
            "size": 397264,
            "upload_time": "2024-11-30T07:22:00",
            "upload_time_iso_8601": "2024-11-30T07:22:00.161075Z",
            "url": "https://files.pythonhosted.org/packages/e2/36/0292c0bb4eed024c7495de8515e6dd184010c97bb05e20bdf36ffe5d2415/pyworld_prebuilt-0.3.4.3-cp39-cp39-macosx_10_9_universal2.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "de5eef92f257a453749c48a9aa2c10eeeb70ca308f8709ba98e541344d13db2b",
                "md5": "66c7213bf4a549c63579696b3c4e8e76",
                "sha256": "9f4dd9defca3386d336ca77aedc7c5b9ce7de599cd5026c4e954543f420af070"
            },
            "downloads": -1,
            "filename": "pyworld_prebuilt-0.3.4.3-cp39-cp39-macosx_10_9_x86_64.whl",
            "has_sig": false,
            "md5_digest": "66c7213bf4a549c63579696b3c4e8e76",
            "packagetype": "bdist_wheel",
            "python_version": "cp39",
            "requires_python": null,
            "size": 215999,
            "upload_time": "2024-11-30T07:22:02",
            "upload_time_iso_8601": "2024-11-30T07:22:02.577282Z",
            "url": "https://files.pythonhosted.org/packages/de/5e/ef92f257a453749c48a9aa2c10eeeb70ca308f8709ba98e541344d13db2b/pyworld_prebuilt-0.3.4.3-cp39-cp39-macosx_10_9_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "fa6e1e0ca3d855b475b75492b26c2855a79cb55524ce8ccf411725ff39bd76b9",
                "md5": "379e7c76aacaa7f38cac9eeec01532a6",
                "sha256": "b588b559601c85968749e5a981ece79d50a686b01c6584415664bacf1f1ae355"
            },
            "downloads": -1,
            "filename": "pyworld_prebuilt-0.3.4.3-cp39-cp39-macosx_11_0_arm64.whl",
            "has_sig": false,
            "md5_digest": "379e7c76aacaa7f38cac9eeec01532a6",
            "packagetype": "bdist_wheel",
            "python_version": "cp39",
            "requires_python": null,
            "size": 186426,
            "upload_time": "2024-11-30T07:22:32",
            "upload_time_iso_8601": "2024-11-30T07:22:32.017149Z",
            "url": "https://files.pythonhosted.org/packages/fa/6e/1e0ca3d855b475b75492b26c2855a79cb55524ce8ccf411725ff39bd76b9/pyworld_prebuilt-0.3.4.3-cp39-cp39-macosx_11_0_arm64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "255460a4e051d41598ec19b49ad9542de946cdf15f0684d88382e3c9aa8c8c71",
                "md5": "8cc8348de5f95504ddaa98aac1513936",
                "sha256": "9c3923e6af8c0272a817c01af1405b54b8f083cd0945df52f9f407d9680501be"
            },
            "downloads": -1,
            "filename": "pyworld_prebuilt-0.3.4.3-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
            "has_sig": false,
            "md5_digest": "8cc8348de5f95504ddaa98aac1513936",
            "packagetype": "bdist_wheel",
            "python_version": "cp39",
            "requires_python": null,
            "size": 952912,
            "upload_time": "2024-11-30T07:22:46",
            "upload_time_iso_8601": "2024-11-30T07:22:46.646046Z",
            "url": "https://files.pythonhosted.org/packages/25/54/60a4e051d41598ec19b49ad9542de946cdf15f0684d88382e3c9aa8c8c71/pyworld_prebuilt-0.3.4.3-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "2d993f5bcd079720ffa4d5479e59f860084d43e57a9dc46e20773b2442b209b0",
                "md5": "847789207b5628b9f1acd55ffd1fa721",
                "sha256": "72d4f31d27d60bf2536f81285af6d6146fc16e1ef3198c65e7ec263f7cd05033"
            },
            "downloads": -1,
            "filename": "pyworld_prebuilt-0.3.4.3-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "has_sig": false,
            "md5_digest": "847789207b5628b9f1acd55ffd1fa721",
            "packagetype": "bdist_wheel",
            "python_version": "cp39",
            "requires_python": null,
            "size": 995499,
            "upload_time": "2024-11-30T07:23:14",
            "upload_time_iso_8601": "2024-11-30T07:23:14.465309Z",
            "url": "https://files.pythonhosted.org/packages/2d/99/3f5bcd079720ffa4d5479e59f860084d43e57a9dc46e20773b2442b209b0/pyworld_prebuilt-0.3.4.3-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "d2083b21cb11d03c592b0d90dab1bddfa9ae4a0cb47a8785cf87a19ec539a81e",
                "md5": "520b81ff563db25e5ac0438788adb6c9",
                "sha256": "2ffe919459f47416acd2e983e96d3b7e47f5625668d42f21e8e2631208fa959e"
            },
            "downloads": -1,
            "filename": "pyworld_prebuilt-0.3.4.3-cp39-cp39-win32.whl",
            "has_sig": false,
            "md5_digest": "520b81ff563db25e5ac0438788adb6c9",
            "packagetype": "bdist_wheel",
            "python_version": "cp39",
            "requires_python": null,
            "size": 149329,
            "upload_time": "2024-11-30T07:23:28",
            "upload_time_iso_8601": "2024-11-30T07:23:28.286465Z",
            "url": "https://files.pythonhosted.org/packages/d2/08/3b21cb11d03c592b0d90dab1bddfa9ae4a0cb47a8785cf87a19ec539a81e/pyworld_prebuilt-0.3.4.3-cp39-cp39-win32.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "10059a2c2753daebc05cfc4f07399f9ed0a74cdd5768b7cb9120fd558480156d",
                "md5": "d38811bf04c61a1bac711276bd51eba9",
                "sha256": "80a81aa5e3cac120b63f0eace1bcf7308ceac4512a881081d065315e07bb1aac"
            },
            "downloads": -1,
            "filename": "pyworld_prebuilt-0.3.4.3-cp39-cp39-win_amd64.whl",
            "has_sig": false,
            "md5_digest": "d38811bf04c61a1bac711276bd51eba9",
            "packagetype": "bdist_wheel",
            "python_version": "cp39",
            "requires_python": null,
            "size": 185873,
            "upload_time": "2024-11-30T07:23:29",
            "upload_time_iso_8601": "2024-11-30T07:23:29.752543Z",
            "url": "https://files.pythonhosted.org/packages/10/05/9a2c2753daebc05cfc4f07399f9ed0a74cdd5768b7cb9120fd558480156d/pyworld_prebuilt-0.3.4.3-cp39-cp39-win_amd64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "3f890ca9e30588ef7084adbf6b09b15d53c21741d174cffe0c4ad0834962e6dd",
                "md5": "4cf2924b4f81fcb1392ba62acfac6202",
                "sha256": "b4044ffb2069db2fb8ed1b77ff52272b498fa667ec7ca141785b59472af902f1"
            },
            "downloads": -1,
            "filename": "pyworld_prebuilt-0.3.4.3-cp39-cp39-win_arm64.whl",
            "has_sig": false,
            "md5_digest": "4cf2924b4f81fcb1392ba62acfac6202",
            "packagetype": "bdist_wheel",
            "python_version": "cp39",
            "requires_python": null,
            "size": 150488,
            "upload_time": "2024-11-30T07:23:58",
            "upload_time_iso_8601": "2024-11-30T07:23:58.265110Z",
            "url": "https://files.pythonhosted.org/packages/3f/89/0ca9e30588ef7084adbf6b09b15d53c21741d174cffe0c4ad0834962e6dd/pyworld_prebuilt-0.3.4.3-cp39-cp39-win_arm64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "6ed425b019ff64d501f99d7013a1dca2ac84390a7d619e5ce5336d26137040c6",
                "md5": "1d207a08497f8dd86a1b85b8fc0035e7",
                "sha256": "d5d238fbc178fbe74049e2cb7fd4365e95fd3840bed3ca0685f204e6708ea020"
            },
            "downloads": -1,
            "filename": "pyworld_prebuilt-0.3.4.3.tar.gz",
            "has_sig": false,
            "md5_digest": "1d207a08497f8dd86a1b85b8fc0035e7",
            "packagetype": "sdist",
            "python_version": "source",
            "requires_python": null,
            "size": 77198,
            "upload_time": "2024-11-30T07:24:00",
            "upload_time_iso_8601": "2024-11-30T07:24:00.191068Z",
            "url": "https://files.pythonhosted.org/packages/6e/d4/25b019ff64d501f99d7013a1dca2ac84390a7d619e5ce5336d26137040c6/pyworld_prebuilt-0.3.4.3.tar.gz",
            "yanked": false,
            "yanked_reason": null
        }
    ],
    "upload_time": "2024-11-30 07:24:00",
    "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": [],
    "lcname": "pyworld-prebuilt"
}
        
Elapsed time: 1.17731s