Skip to main content

pyworld-prebuilt - A Python wrapper of WORLD Vocoder

[!TIP]
This is a prebuilt version of pyworld 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 and the official website of WORLD Vocoder

APIs

Vocoder Functions

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

# Convert speech into features (using default arguments)
f0, sp, ap = pw.wav2world(x, fs)

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

Installation

Using pip

pip install pyworld-prebuilt

Building from Source

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).
(It seems to me that using virtualenv or conda is the best practice.)

Installation Validation

You can validate installation by running

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.)

Environment/Dependencies

  • Operating systems
    • Linux Ubuntu 14.04+
    • Windows (thanks to 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.
  • 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.
    (I failed to build it on Cython 0.20.1post0)
    It'll require you to download Cython form http://cython.org/
    Unzip it, and python setup.py install it.
    (I tried pip install Cython but the upgrade didn't seem correct)
    (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):
import matplotlib
matplotlib.use('Agg')
  1. 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
  2. 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).

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.
  1. Another way to install pyworld is via
    python setup.py install
    • Add --user if you don't have root access
    • Add --record install.txt to track the installation dir
  2. If you just want to try out some experiments, execute
    python setup.py build_ext --inplace
    Then you can use PyWorld from this directory.
    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.
    Alternatively you can copy/symlink the compiled files using pip, e.g. pip install -e .

Acknowledgement

Thank all contributors (tats-u, wuaalb, r9y9, rikrd, kudan2510, sabonerune) for making this repo better and sotelo whose world.py inspired this repo.

Download files

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

Source Distribution

pyworld_prebuilt-0.3.6.post1.tar.gz (78.3 kB view details)

Uploaded Source

Built Distributions

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

pyworld_prebuilt-0.3.6.post1-cp315-cp315t-win_arm64.whl (156.9 kB view details)

Uploaded CPython 3.15tWindows ARM64

pyworld_prebuilt-0.3.6.post1-cp315-cp315t-win_amd64.whl (203.5 kB view details)

Uploaded CPython 3.15tWindows x86-64

pyworld_prebuilt-0.3.6.post1-cp315-cp315t-win32.whl (162.4 kB view details)

Uploaded CPython 3.15tWindows x86

pyworld_prebuilt-0.3.6.post1-cp315-cp315t-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl (1.1 MB view details)

Uploaded CPython 3.15tmanylinux: glibc 2.24+ x86-64manylinux: glibc 2.28+ x86-64

pyworld_prebuilt-0.3.6.post1-cp315-cp315t-manylinux_2_24_aarch64.manylinux_2_28_aarch64.whl (1.1 MB view details)

Uploaded CPython 3.15tmanylinux: glibc 2.24+ ARM64manylinux: glibc 2.28+ ARM64

pyworld_prebuilt-0.3.6.post1-cp315-cp315t-macosx_11_0_arm64.whl (199.5 kB view details)

Uploaded CPython 3.15tmacOS 11.0+ ARM64

pyworld_prebuilt-0.3.6.post1-cp315-cp315t-macosx_10_15_x86_64.whl (216.4 kB view details)

Uploaded CPython 3.15tmacOS 10.15+ x86-64

pyworld_prebuilt-0.3.6.post1-cp315-cp315t-macosx_10_15_universal2.whl (408.3 kB view details)

Uploaded CPython 3.15tmacOS 10.15+ universal2 (ARM64, x86-64)

pyworld_prebuilt-0.3.6.post1-cp315-cp315-win_arm64.whl (150.8 kB view details)

Uploaded CPython 3.15Windows ARM64

pyworld_prebuilt-0.3.6.post1-cp315-cp315-win_amd64.whl (184.4 kB view details)

Uploaded CPython 3.15Windows x86-64

pyworld_prebuilt-0.3.6.post1-cp315-cp315-win32.whl (147.7 kB view details)

Uploaded CPython 3.15Windows x86

pyworld_prebuilt-0.3.6.post1-cp315-cp315-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl (1.1 MB view details)

Uploaded CPython 3.15manylinux: glibc 2.24+ x86-64manylinux: glibc 2.28+ x86-64

pyworld_prebuilt-0.3.6.post1-cp315-cp315-manylinux_2_24_aarch64.manylinux_2_28_aarch64.whl (1.1 MB view details)

Uploaded CPython 3.15manylinux: glibc 2.24+ ARM64manylinux: glibc 2.28+ ARM64

pyworld_prebuilt-0.3.6.post1-cp315-cp315-macosx_11_0_arm64.whl (192.9 kB view details)

Uploaded CPython 3.15macOS 11.0+ ARM64

pyworld_prebuilt-0.3.6.post1-cp315-cp315-macosx_10_15_x86_64.whl (211.6 kB view details)

Uploaded CPython 3.15macOS 10.15+ x86-64

pyworld_prebuilt-0.3.6.post1-cp315-cp315-macosx_10_15_universal2.whl (396.3 kB view details)

Uploaded CPython 3.15macOS 10.15+ universal2 (ARM64, x86-64)

pyworld_prebuilt-0.3.6.post1-cp314-cp314t-win_arm64.whl (157.1 kB view details)

Uploaded CPython 3.14tWindows ARM64

pyworld_prebuilt-0.3.6.post1-cp314-cp314t-win_amd64.whl (204.2 kB view details)

Uploaded CPython 3.14tWindows x86-64

pyworld_prebuilt-0.3.6.post1-cp314-cp314t-win32.whl (162.9 kB view details)

Uploaded CPython 3.14tWindows x86

pyworld_prebuilt-0.3.6.post1-cp314-cp314t-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl (1.1 MB view details)

Uploaded CPython 3.14tmanylinux: glibc 2.24+ x86-64manylinux: glibc 2.28+ x86-64

pyworld_prebuilt-0.3.6.post1-cp314-cp314t-manylinux_2_24_aarch64.manylinux_2_28_aarch64.whl (1.1 MB view details)

Uploaded CPython 3.14tmanylinux: glibc 2.24+ ARM64manylinux: glibc 2.28+ ARM64

pyworld_prebuilt-0.3.6.post1-cp314-cp314t-macosx_11_0_arm64.whl (200.4 kB view details)

Uploaded CPython 3.14tmacOS 11.0+ ARM64

pyworld_prebuilt-0.3.6.post1-cp314-cp314t-macosx_10_15_x86_64.whl (217.0 kB view details)

Uploaded CPython 3.14tmacOS 10.15+ x86-64

pyworld_prebuilt-0.3.6.post1-cp314-cp314t-macosx_10_15_universal2.whl (409.6 kB view details)

Uploaded CPython 3.14tmacOS 10.15+ universal2 (ARM64, x86-64)

pyworld_prebuilt-0.3.6.post1-cp314-cp314-win_arm64.whl (150.9 kB view details)

Uploaded CPython 3.14Windows ARM64

pyworld_prebuilt-0.3.6.post1-cp314-cp314-win_amd64.whl (184.4 kB view details)

Uploaded CPython 3.14Windows x86-64

pyworld_prebuilt-0.3.6.post1-cp314-cp314-win32.whl (147.7 kB view details)

Uploaded CPython 3.14Windows x86

pyworld_prebuilt-0.3.6.post1-cp314-cp314-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl (1.1 MB view details)

Uploaded CPython 3.14manylinux: glibc 2.24+ x86-64manylinux: glibc 2.28+ x86-64

pyworld_prebuilt-0.3.6.post1-cp314-cp314-manylinux_2_24_aarch64.manylinux_2_28_aarch64.whl (1.1 MB view details)

Uploaded CPython 3.14manylinux: glibc 2.24+ ARM64manylinux: glibc 2.28+ ARM64

pyworld_prebuilt-0.3.6.post1-cp314-cp314-macosx_11_0_arm64.whl (193.0 kB view details)

Uploaded CPython 3.14macOS 11.0+ ARM64

pyworld_prebuilt-0.3.6.post1-cp314-cp314-macosx_10_15_x86_64.whl (211.5 kB view details)

Uploaded CPython 3.14macOS 10.15+ x86-64

pyworld_prebuilt-0.3.6.post1-cp314-cp314-macosx_10_15_universal2.whl (396.3 kB view details)

Uploaded CPython 3.14macOS 10.15+ universal2 (ARM64, x86-64)

pyworld_prebuilt-0.3.6.post1-cp313-cp313-win_arm64.whl (144.5 kB view details)

Uploaded CPython 3.13Windows ARM64

pyworld_prebuilt-0.3.6.post1-cp313-cp313-win_amd64.whl (179.9 kB view details)

Uploaded CPython 3.13Windows x86-64

pyworld_prebuilt-0.3.6.post1-cp313-cp313-win32.whl (145.0 kB view details)

Uploaded CPython 3.13Windows x86

pyworld_prebuilt-0.3.6.post1-cp313-cp313-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl (1.1 MB view details)

Uploaded CPython 3.13manylinux: glibc 2.24+ x86-64manylinux: glibc 2.28+ x86-64

pyworld_prebuilt-0.3.6.post1-cp313-cp313-manylinux_2_24_aarch64.manylinux_2_28_aarch64.whl (1.1 MB view details)

Uploaded CPython 3.13manylinux: glibc 2.24+ ARM64manylinux: glibc 2.28+ ARM64

pyworld_prebuilt-0.3.6.post1-cp313-cp313-macosx_11_0_arm64.whl (192.1 kB view details)

Uploaded CPython 3.13macOS 11.0+ ARM64

pyworld_prebuilt-0.3.6.post1-cp313-cp313-macosx_10_13_x86_64.whl (211.0 kB view details)

Uploaded CPython 3.13macOS 10.13+ x86-64

pyworld_prebuilt-0.3.6.post1-cp313-cp313-macosx_10_13_universal2.whl (395.0 kB view details)

Uploaded CPython 3.13macOS 10.13+ universal2 (ARM64, x86-64)

pyworld_prebuilt-0.3.6.post1-cp312-cp312-win_arm64.whl (144.6 kB view details)

Uploaded CPython 3.12Windows ARM64

pyworld_prebuilt-0.3.6.post1-cp312-cp312-win_amd64.whl (180.2 kB view details)

Uploaded CPython 3.12Windows x86-64

pyworld_prebuilt-0.3.6.post1-cp312-cp312-win32.whl (145.2 kB view details)

Uploaded CPython 3.12Windows x86

pyworld_prebuilt-0.3.6.post1-cp312-cp312-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl (1.1 MB view details)

Uploaded CPython 3.12manylinux: glibc 2.24+ x86-64manylinux: glibc 2.28+ x86-64

pyworld_prebuilt-0.3.6.post1-cp312-cp312-manylinux_2_24_aarch64.manylinux_2_28_aarch64.whl (1.1 MB view details)

Uploaded CPython 3.12manylinux: glibc 2.24+ ARM64manylinux: glibc 2.28+ ARM64

pyworld_prebuilt-0.3.6.post1-cp312-cp312-macosx_11_0_arm64.whl (190.6 kB view details)

Uploaded CPython 3.12macOS 11.0+ ARM64

pyworld_prebuilt-0.3.6.post1-cp312-cp312-macosx_10_13_x86_64.whl (208.6 kB view details)

Uploaded CPython 3.12macOS 10.13+ x86-64

pyworld_prebuilt-0.3.6.post1-cp312-cp312-macosx_10_13_universal2.whl (390.9 kB view details)

Uploaded CPython 3.12macOS 10.13+ universal2 (ARM64, x86-64)

pyworld_prebuilt-0.3.6.post1-cp311-cp311-win_arm64.whl (148.9 kB view details)

Uploaded CPython 3.11Windows ARM64

pyworld_prebuilt-0.3.6.post1-cp311-cp311-win_amd64.whl (184.9 kB view details)

Uploaded CPython 3.11Windows x86-64

pyworld_prebuilt-0.3.6.post1-cp311-cp311-win32.whl (146.9 kB view details)

Uploaded CPython 3.11Windows x86

pyworld_prebuilt-0.3.6.post1-cp311-cp311-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl (1.2 MB view details)

Uploaded CPython 3.11manylinux: glibc 2.24+ x86-64manylinux: glibc 2.28+ x86-64

pyworld_prebuilt-0.3.6.post1-cp311-cp311-manylinux_2_24_aarch64.manylinux_2_28_aarch64.whl (1.1 MB view details)

Uploaded CPython 3.11manylinux: glibc 2.24+ ARM64manylinux: glibc 2.28+ ARM64

pyworld_prebuilt-0.3.6.post1-cp311-cp311-macosx_11_0_arm64.whl (190.9 kB view details)

Uploaded CPython 3.11macOS 11.0+ ARM64

pyworld_prebuilt-0.3.6.post1-cp311-cp311-macosx_10_9_x86_64.whl (212.1 kB view details)

Uploaded CPython 3.11macOS 10.9+ x86-64

pyworld_prebuilt-0.3.6.post1-cp311-cp311-macosx_10_9_universal2.whl (395.0 kB view details)

Uploaded CPython 3.11macOS 10.9+ universal2 (ARM64, x86-64)

pyworld_prebuilt-0.3.6.post1-cp310-cp310-win_arm64.whl (149.6 kB view details)

Uploaded CPython 3.10Windows ARM64

pyworld_prebuilt-0.3.6.post1-cp310-cp310-win_amd64.whl (185.3 kB view details)

Uploaded CPython 3.10Windows x86-64

pyworld_prebuilt-0.3.6.post1-cp310-cp310-win32.whl (148.1 kB view details)

Uploaded CPython 3.10Windows x86

pyworld_prebuilt-0.3.6.post1-cp310-cp310-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl (1.1 MB view details)

Uploaded CPython 3.10manylinux: glibc 2.24+ x86-64manylinux: glibc 2.28+ x86-64

pyworld_prebuilt-0.3.6.post1-cp310-cp310-manylinux_2_24_aarch64.manylinux_2_28_aarch64.whl (1.1 MB view details)

Uploaded CPython 3.10manylinux: glibc 2.24+ ARM64manylinux: glibc 2.28+ ARM64

pyworld_prebuilt-0.3.6.post1-cp310-cp310-macosx_11_0_arm64.whl (192.4 kB view details)

Uploaded CPython 3.10macOS 11.0+ ARM64

pyworld_prebuilt-0.3.6.post1-cp310-cp310-macosx_10_9_x86_64.whl (214.3 kB view details)

Uploaded CPython 3.10macOS 10.9+ x86-64

pyworld_prebuilt-0.3.6.post1-cp310-cp310-macosx_10_9_universal2.whl (399.2 kB view details)

Uploaded CPython 3.10macOS 10.9+ universal2 (ARM64, x86-64)

pyworld_prebuilt-0.3.6.post1-cp39-cp39-win_arm64.whl (149.8 kB view details)

Uploaded CPython 3.9Windows ARM64

pyworld_prebuilt-0.3.6.post1-cp39-cp39-win_amd64.whl (186.0 kB view details)

Uploaded CPython 3.9Windows x86-64

pyworld_prebuilt-0.3.6.post1-cp39-cp39-win32.whl (148.3 kB view details)

Uploaded CPython 3.9Windows x86

pyworld_prebuilt-0.3.6.post1-cp39-cp39-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl (1.1 MB view details)

Uploaded CPython 3.9manylinux: glibc 2.24+ x86-64manylinux: glibc 2.28+ x86-64

pyworld_prebuilt-0.3.6.post1-cp39-cp39-manylinux_2_24_aarch64.manylinux_2_28_aarch64.whl (1.1 MB view details)

Uploaded CPython 3.9manylinux: glibc 2.24+ ARM64manylinux: glibc 2.28+ ARM64

pyworld_prebuilt-0.3.6.post1-cp39-cp39-macosx_11_0_arm64.whl (192.7 kB view details)

Uploaded CPython 3.9macOS 11.0+ ARM64

pyworld_prebuilt-0.3.6.post1-cp39-cp39-macosx_10_9_x86_64.whl (214.7 kB view details)

Uploaded CPython 3.9macOS 10.9+ x86-64

pyworld_prebuilt-0.3.6.post1-cp39-cp39-macosx_10_9_universal2.whl (400.0 kB view details)

Uploaded CPython 3.9macOS 10.9+ universal2 (ARM64, x86-64)

File details

Details for the file pyworld_prebuilt-0.3.6.post1.tar.gz.

File metadata

  • Download URL: pyworld_prebuilt-0.3.6.post1.tar.gz
  • Upload date:
  • Size: 78.3 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/7.0.0 CPython/3.13.14

File hashes

Hashes for pyworld_prebuilt-0.3.6.post1.tar.gz
Algorithm Hash digest
SHA256 f4d64d29e1399ce34c262482d74b935949a43e21a5434f5f45ab97954a57841b
MD5 dcc09b2b96fdff19e0f5bb1da0fae2e1
BLAKE2b-256 44959029ac00946587ca462f86c971936a80ede5320d74831831a7fbce4d412b

See more details on using hashes here.

File details

Details for the file pyworld_prebuilt-0.3.6.post1-cp315-cp315t-win_arm64.whl.

File metadata

File hashes

Hashes for pyworld_prebuilt-0.3.6.post1-cp315-cp315t-win_arm64.whl
Algorithm Hash digest
SHA256 208a3492b042d3193e49e577abfd846753554b5f5aa5eefff6ed2b63ad1283f1
MD5 9897aefd8c6240e38806b44db530592b
BLAKE2b-256 e4179cd967569f64952e89d91d5db18c8e9011a276202ca31fd3a5eaa4d2665a

See more details on using hashes here.

File details

Details for the file pyworld_prebuilt-0.3.6.post1-cp315-cp315t-win_amd64.whl.

File metadata

File hashes

Hashes for pyworld_prebuilt-0.3.6.post1-cp315-cp315t-win_amd64.whl
Algorithm Hash digest
SHA256 dff15194f309621806db84a0858212bd2cbc31ed414a86fcf4354c33ff4b0666
MD5 1f2981ccbeb540cdcbc7346e873c84fd
BLAKE2b-256 fd57f515af8cee715ce7a051173f322b8f313926ed8cc5365ae5a38259290087

See more details on using hashes here.

File details

Details for the file pyworld_prebuilt-0.3.6.post1-cp315-cp315t-win32.whl.

File metadata

File hashes

Hashes for pyworld_prebuilt-0.3.6.post1-cp315-cp315t-win32.whl
Algorithm Hash digest
SHA256 87952a2ec86622ec237b5af0beee81a51bdd403aa65f7c9a2211ff1173ae1412
MD5 a874285145eca5ef04d1e5b904afc6ed
BLAKE2b-256 b0ac4f87ac483bf212ece6baa1f6f050f11022839a054ab2003fc5ca1ebeebd1

See more details on using hashes here.

File details

Details for the file pyworld_prebuilt-0.3.6.post1-cp315-cp315t-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for pyworld_prebuilt-0.3.6.post1-cp315-cp315t-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 bde2e78a32a9b47bd0bd03a654cae5f201a7151f105b38eab38985869367c26d
MD5 befb65d0ecd03268b9b60045f31d1b3a
BLAKE2b-256 47973fb90ad204c4df458c91a6dee3ac087823a66d6aa822e0df7d1ddb964823

See more details on using hashes here.

File details

Details for the file pyworld_prebuilt-0.3.6.post1-cp315-cp315t-manylinux_2_24_aarch64.manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for pyworld_prebuilt-0.3.6.post1-cp315-cp315t-manylinux_2_24_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 2530fc383a2a4cdc1346e029aaeb0ccd297d94ca55df99fb65c9677778234a5c
MD5 63772e86ca6195b4a82481c669b5294c
BLAKE2b-256 ac707f76484684407bcd9d5d7d46739c7357004efbcd52f58c7cd34d4c93d51a

See more details on using hashes here.

File details

Details for the file pyworld_prebuilt-0.3.6.post1-cp315-cp315t-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for pyworld_prebuilt-0.3.6.post1-cp315-cp315t-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 a65ad09254876d9e0ee47644bfed8adcae7be548ad6b3086216a320d43a1af8c
MD5 dd49d72898128b584b0b2f42ecccc65d
BLAKE2b-256 cc38f985c1692412fb5427a40b663c3c507948bc84493fbae059431f14cde6ab

See more details on using hashes here.

File details

Details for the file pyworld_prebuilt-0.3.6.post1-cp315-cp315t-macosx_10_15_x86_64.whl.

File metadata

File hashes

Hashes for pyworld_prebuilt-0.3.6.post1-cp315-cp315t-macosx_10_15_x86_64.whl
Algorithm Hash digest
SHA256 ead8558d7e60ee254fdaf8d157ddf839d77acc633f8c8a261182e57bfe8afcaf
MD5 8dd78b375b62427672dc69ba7f5b091f
BLAKE2b-256 34c85a01f1a4581606f9327ce0ad5981c4f04bc2dfc25ce05011c5811b69667c

See more details on using hashes here.

File details

Details for the file pyworld_prebuilt-0.3.6.post1-cp315-cp315t-macosx_10_15_universal2.whl.

File metadata

File hashes

Hashes for pyworld_prebuilt-0.3.6.post1-cp315-cp315t-macosx_10_15_universal2.whl
Algorithm Hash digest
SHA256 c69672246b51eb1ed001ac64336777e54fbb12cae706453f92240e0dfe605a81
MD5 a42f78808976203ce47285412de93860
BLAKE2b-256 d3132276f9d7313f03224d980d512d02a5569405aa5b3f977d610d217e9dfeba

See more details on using hashes here.

File details

Details for the file pyworld_prebuilt-0.3.6.post1-cp315-cp315-win_arm64.whl.

File metadata

File hashes

Hashes for pyworld_prebuilt-0.3.6.post1-cp315-cp315-win_arm64.whl
Algorithm Hash digest
SHA256 45bb694689e968cd898f0bf473b7968a39418f2dcfe59d04203b7877a857f043
MD5 a5830929ff8b077dbf75b22307bb9dcf
BLAKE2b-256 b32b4f0811a2c7360748888668363a18b23886537cc8943a161f362dcda48247

See more details on using hashes here.

File details

Details for the file pyworld_prebuilt-0.3.6.post1-cp315-cp315-win_amd64.whl.

File metadata

File hashes

Hashes for pyworld_prebuilt-0.3.6.post1-cp315-cp315-win_amd64.whl
Algorithm Hash digest
SHA256 6ccf3a8a62f1aefc17800da1d8e93450bab141537b47d738b068cc39edfcf516
MD5 f62ff42feb477081f1736947eb6f417a
BLAKE2b-256 3e75aee6700b569b9a7e75b0f32981bc1ff48d0eab33f4b9a4bfa3582ac40755

See more details on using hashes here.

File details

Details for the file pyworld_prebuilt-0.3.6.post1-cp315-cp315-win32.whl.

File metadata

File hashes

Hashes for pyworld_prebuilt-0.3.6.post1-cp315-cp315-win32.whl
Algorithm Hash digest
SHA256 36184a76fc06d3113c1cfe3412680bb4702f8283711c5d990dff08b3d390d201
MD5 90a5947a30d62da501c1c1a1a235a373
BLAKE2b-256 a0320f63a83e701c3030bdc9036bfa28a1f69d841a76de1cb3c82e4973323378

See more details on using hashes here.

File details

Details for the file pyworld_prebuilt-0.3.6.post1-cp315-cp315-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for pyworld_prebuilt-0.3.6.post1-cp315-cp315-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 0e31dfd4213b3e64d2d144fe26068ac020b050945d69d895b53aa450ec01cbb1
MD5 bba80e6dc3223dd607b6552210bb52d6
BLAKE2b-256 0af6844bc65388c0e1ef0bc93de4db13434eee6944f5e6c09495a628c9e5eecd

See more details on using hashes here.

File details

Details for the file pyworld_prebuilt-0.3.6.post1-cp315-cp315-manylinux_2_24_aarch64.manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for pyworld_prebuilt-0.3.6.post1-cp315-cp315-manylinux_2_24_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 ba891b55b03dcdd41c48de203680d307850880433861e4598b37fe6cb40cab3b
MD5 32e771879e47fc48800e1d04ed944b5a
BLAKE2b-256 b8ab1654600e856ad579ee4c612f7cfd5e47216aa412eaa744db490e202ad1cc

See more details on using hashes here.

File details

Details for the file pyworld_prebuilt-0.3.6.post1-cp315-cp315-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for pyworld_prebuilt-0.3.6.post1-cp315-cp315-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 b7449079c65bcf679af06ac89c4a9dc547975bb2dd38118439f200ac52a339da
MD5 a896b63030800c7b9ddb47590f51e7b0
BLAKE2b-256 55ee0d9626b09f338baf713afd8c9f27da69033c812c7982035eed215139296b

See more details on using hashes here.

File details

Details for the file pyworld_prebuilt-0.3.6.post1-cp315-cp315-macosx_10_15_x86_64.whl.

File metadata

File hashes

Hashes for pyworld_prebuilt-0.3.6.post1-cp315-cp315-macosx_10_15_x86_64.whl
Algorithm Hash digest
SHA256 a935065c60b6fff17f257e2f1daf44378e2d0ef42c456313315f361b45976b8c
MD5 b9bb4b7f94e0a8ea3b3da00124e935df
BLAKE2b-256 1e85a1a2b1037c0883e18add0ac6185630cfb0c5be225d16093ef1c2b38607d0

See more details on using hashes here.

File details

Details for the file pyworld_prebuilt-0.3.6.post1-cp315-cp315-macosx_10_15_universal2.whl.

File metadata

File hashes

Hashes for pyworld_prebuilt-0.3.6.post1-cp315-cp315-macosx_10_15_universal2.whl
Algorithm Hash digest
SHA256 c74f3f4057fa7d5d2c901093a72b9b7187ca0ae62b8059291ab1c53c4c70fd5c
MD5 616eb3122d7a135c86ac6cf56e16b74a
BLAKE2b-256 493618999394e14a6031946a5e9f4dad2a08a4462faae6a9ec967888087897ac

See more details on using hashes here.

File details

Details for the file pyworld_prebuilt-0.3.6.post1-cp314-cp314t-win_arm64.whl.

File metadata

File hashes

Hashes for pyworld_prebuilt-0.3.6.post1-cp314-cp314t-win_arm64.whl
Algorithm Hash digest
SHA256 032e8fca8c6b3fb992320ee0c22280130fac73d38e6b6e78ece1b2199d6cb82b
MD5 2fe3d55fa88c5d2921df22c9b5eddab8
BLAKE2b-256 9546cc756704c3fc05749d3b223725f9cb5d1a245b47c915cd680672c834317c

See more details on using hashes here.

File details

Details for the file pyworld_prebuilt-0.3.6.post1-cp314-cp314t-win_amd64.whl.

File metadata

File hashes

Hashes for pyworld_prebuilt-0.3.6.post1-cp314-cp314t-win_amd64.whl
Algorithm Hash digest
SHA256 f7ee3e25244ceb981fb686ae4dcb4f8475c84056dc0ad7b56bc19c713a8fc7e5
MD5 fe650d3e5580962a8afa648c287957ac
BLAKE2b-256 4d55d3fd1a75948896c7dc8b7459abc5e9326b11bc8f348691780e635d041cac

See more details on using hashes here.

File details

Details for the file pyworld_prebuilt-0.3.6.post1-cp314-cp314t-win32.whl.

File metadata

File hashes

Hashes for pyworld_prebuilt-0.3.6.post1-cp314-cp314t-win32.whl
Algorithm Hash digest
SHA256 4d49c47fc02a37dad807a49e42e5417d12dc11d23901e2473f24e9549ab4d6e0
MD5 87f13637399cf3a87bceb26c4f2acf60
BLAKE2b-256 1aa156aa56d93dd900b462ab7266e56af0a7753d8d75f49e0c06b601d1b2882c

See more details on using hashes here.

File details

Details for the file pyworld_prebuilt-0.3.6.post1-cp314-cp314t-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for pyworld_prebuilt-0.3.6.post1-cp314-cp314t-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 fc4c62a4125b1c7f5ef3c65480780b959383ab6a20a2ac2b35c148280cae69cc
MD5 c6aa71fc78e9312b4a7c2c50957e52fe
BLAKE2b-256 1e771e96544db5e35ed807c82e20f3407b27e335a2ad06875392ccc24387aaa7

See more details on using hashes here.

File details

Details for the file pyworld_prebuilt-0.3.6.post1-cp314-cp314t-manylinux_2_24_aarch64.manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for pyworld_prebuilt-0.3.6.post1-cp314-cp314t-manylinux_2_24_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 fcac3e681404f6670b724196c21ab282532d3212b13d52bc5c5dbc53c3cfbb93
MD5 1f8f45ab733e5575fb41fb56d9d94368
BLAKE2b-256 61b70a17470929385772650853db94cabe429e785cac132dbab38e0ae3febc94

See more details on using hashes here.

File details

Details for the file pyworld_prebuilt-0.3.6.post1-cp314-cp314t-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for pyworld_prebuilt-0.3.6.post1-cp314-cp314t-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 ae7d5c59fff054a51949a4e6585a11971433399319060b2f048644ecca177a65
MD5 20f7b60fbfe693f0a204c786f3b6c009
BLAKE2b-256 9e90ea4606b4dc5fa8ca2c3d8ee5767c7b1f9c6babd96631d32c3f6f3079e7ae

See more details on using hashes here.

File details

Details for the file pyworld_prebuilt-0.3.6.post1-cp314-cp314t-macosx_10_15_x86_64.whl.

File metadata

File hashes

Hashes for pyworld_prebuilt-0.3.6.post1-cp314-cp314t-macosx_10_15_x86_64.whl
Algorithm Hash digest
SHA256 2129dfb78b2f80b3f2da7634680d80c90e1fc208359028d1d97bfcb936b08b52
MD5 9b0cd1992f57c04dc63aae180a99a087
BLAKE2b-256 1248015e22c7b4dd560885149db45821b146de36b9672dfa317df38b8da43711

See more details on using hashes here.

File details

Details for the file pyworld_prebuilt-0.3.6.post1-cp314-cp314t-macosx_10_15_universal2.whl.

File metadata

File hashes

Hashes for pyworld_prebuilt-0.3.6.post1-cp314-cp314t-macosx_10_15_universal2.whl
Algorithm Hash digest
SHA256 6279c625881f707de2e686b000ee0cfe89a17f2a8fb5f17c4c493090694b951a
MD5 e8ee09d7168d4727a2e8b7b5b81d5180
BLAKE2b-256 4d1975c9651b3fa5359f1647154f4f88b25556cf489257cdacc6c400dab0460e

See more details on using hashes here.

File details

Details for the file pyworld_prebuilt-0.3.6.post1-cp314-cp314-win_arm64.whl.

File metadata

File hashes

Hashes for pyworld_prebuilt-0.3.6.post1-cp314-cp314-win_arm64.whl
Algorithm Hash digest
SHA256 ad7bdf880628ed5361f072adfd332cd412ee50b81ad5b73289a88084652c539a
MD5 6af074df0b5ce3def40902d4e1da4d65
BLAKE2b-256 bb89a3c333970233b801de3ccc055a5f55b633a2f24b6a6d6c6fdf12f7c5cfcf

See more details on using hashes here.

File details

Details for the file pyworld_prebuilt-0.3.6.post1-cp314-cp314-win_amd64.whl.

File metadata

File hashes

Hashes for pyworld_prebuilt-0.3.6.post1-cp314-cp314-win_amd64.whl
Algorithm Hash digest
SHA256 b30f51bfca0315b2e0bb0a9ec5b9311005ea8051cd2a06db0f09a2bc7bd67fda
MD5 d8102c0445ba8078d84ff30592a5f1ae
BLAKE2b-256 4dff71fcb75b243d984edce3c02c2cbb5de172e81c24bb68819a694e0f9a874f

See more details on using hashes here.

File details

Details for the file pyworld_prebuilt-0.3.6.post1-cp314-cp314-win32.whl.

File metadata

File hashes

Hashes for pyworld_prebuilt-0.3.6.post1-cp314-cp314-win32.whl
Algorithm Hash digest
SHA256 30122811240d612d6f7824aaca97fd235a0134129df92e41bd3a59ac0906ecd1
MD5 520f988cdb88fd802fd00e701a44ceb7
BLAKE2b-256 ad04503c3b21d4b8eb859aa190d94fecd890d6a363b231eaa619649b8c6d486e

See more details on using hashes here.

File details

Details for the file pyworld_prebuilt-0.3.6.post1-cp314-cp314-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for pyworld_prebuilt-0.3.6.post1-cp314-cp314-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 ea6f78b3df6279c6b7f3057675c8625fa5c78c51b91ec1789156a38d8acbdeb1
MD5 218cdeb50ee1b914172c30d6de7c76e0
BLAKE2b-256 386f57cd1d352d45af64ceea2589d5afedc118e84452e41b35c57b03f465895f

See more details on using hashes here.

File details

Details for the file pyworld_prebuilt-0.3.6.post1-cp314-cp314-manylinux_2_24_aarch64.manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for pyworld_prebuilt-0.3.6.post1-cp314-cp314-manylinux_2_24_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 82d6243f630d12e7e3a7a0ff75caad4594f67d3e6d12569a31dfb00740737299
MD5 27d53c8da45a1b21c8c5181637e371c5
BLAKE2b-256 7144b850c8aab76d7af996bc195410415a4959f740655928ef2b4eecabb1cfb1

See more details on using hashes here.

File details

Details for the file pyworld_prebuilt-0.3.6.post1-cp314-cp314-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for pyworld_prebuilt-0.3.6.post1-cp314-cp314-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 e30aa681a3da7b6c5a38ceb7ec483b6c3fc3643ed40677ea40503307a7fe1bce
MD5 685d1e8e090ae0029fd11e219a25f0a9
BLAKE2b-256 020b335fc3c27c74439c80c2ade0236301f336ecf1569683324facf5e7c0a4ea

See more details on using hashes here.

File details

Details for the file pyworld_prebuilt-0.3.6.post1-cp314-cp314-macosx_10_15_x86_64.whl.

File metadata

File hashes

Hashes for pyworld_prebuilt-0.3.6.post1-cp314-cp314-macosx_10_15_x86_64.whl
Algorithm Hash digest
SHA256 56c7c8fdc03692633938fa3e23d209a666086ad411beb5e21bcc353b76d4c284
MD5 296257b56e30be5b9be0b61b087597bd
BLAKE2b-256 82bf14d5299006850ed2aa55b7561668bcb47bac40ca3324757c3a958d96102d

See more details on using hashes here.

File details

Details for the file pyworld_prebuilt-0.3.6.post1-cp314-cp314-macosx_10_15_universal2.whl.

File metadata

File hashes

Hashes for pyworld_prebuilt-0.3.6.post1-cp314-cp314-macosx_10_15_universal2.whl
Algorithm Hash digest
SHA256 613568963f461043b2f8148141596e2e95c00c197e88c657e1dd6ac7ae529c37
MD5 88e4ddc0806cf748ce96ca49caa1a2be
BLAKE2b-256 7ab6231f37ffd53ae411972ba9e9be27cee1c8be18902ed74ebdf2d7f307c0ea

See more details on using hashes here.

File details

Details for the file pyworld_prebuilt-0.3.6.post1-cp313-cp313-win_arm64.whl.

File metadata

File hashes

Hashes for pyworld_prebuilt-0.3.6.post1-cp313-cp313-win_arm64.whl
Algorithm Hash digest
SHA256 f7ca195253376a7f3b51ea64cbba56d9e2fd9eac93ff11861fedccf7f2e93d66
MD5 b5b62764353b3835f06f85f5430abda1
BLAKE2b-256 043f1f605b8d0405b8fb9f18c9f8f96dcbb2ee3dfa978f815aefee8a6e4d20ff

See more details on using hashes here.

File details

Details for the file pyworld_prebuilt-0.3.6.post1-cp313-cp313-win_amd64.whl.

File metadata

File hashes

Hashes for pyworld_prebuilt-0.3.6.post1-cp313-cp313-win_amd64.whl
Algorithm Hash digest
SHA256 8548016371479597469bc932193d14ca02412f1d40dde2f64b8488a09717f265
MD5 4dd6c5b5abe2de32dd7309a4692f068f
BLAKE2b-256 eea7cac824d9b6ca4d83bf20d953b9b6addff8d77ed9059e5bef123854f4a100

See more details on using hashes here.

File details

Details for the file pyworld_prebuilt-0.3.6.post1-cp313-cp313-win32.whl.

File metadata

File hashes

Hashes for pyworld_prebuilt-0.3.6.post1-cp313-cp313-win32.whl
Algorithm Hash digest
SHA256 4ec8988c27c645f8c4ab5c23ddbfdd34e1008a8a96ed9a0b302b86e9e53a8388
MD5 cdbf4bd87e592b2a012d1cc41c45d907
BLAKE2b-256 ae4519d11cbe4e014bd980683ebfe412c5991fa4643d2e9328e616b2a0de4c9b

See more details on using hashes here.

File details

Details for the file pyworld_prebuilt-0.3.6.post1-cp313-cp313-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for pyworld_prebuilt-0.3.6.post1-cp313-cp313-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 cec7617f90c2cddf8d1826e793d956c52e0d43bbb335eb7d5f14b1c3176bf36c
MD5 0c8829eeab98a9d10cf2bd5aa298dc52
BLAKE2b-256 631597da6d7b14daa37e9db38b1c3880493e4ad1e537846364190c50cfca6dc1

See more details on using hashes here.

File details

Details for the file pyworld_prebuilt-0.3.6.post1-cp313-cp313-manylinux_2_24_aarch64.manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for pyworld_prebuilt-0.3.6.post1-cp313-cp313-manylinux_2_24_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 4ba8d519e30b63fc9115bef5ddbebe7603fce389ad9767dc226219a531f356c0
MD5 0966834171d87776f4e83fab48ec69e8
BLAKE2b-256 5fb6a43bbc1d0db4aaa78f956901cccfa9fd6df047379f51473067781c1cd814

See more details on using hashes here.

File details

Details for the file pyworld_prebuilt-0.3.6.post1-cp313-cp313-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for pyworld_prebuilt-0.3.6.post1-cp313-cp313-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 228f09f34b60abaa7482f4d9c81fa5869ee6d99cd3749d7be94808d0c730dfc6
MD5 e2b3f2fe5b90872f3ed98b608479ef8e
BLAKE2b-256 51236c00b7322624e00c19d9f98491c8483d17fa0c57158cb68b6e3e55352699

See more details on using hashes here.

File details

Details for the file pyworld_prebuilt-0.3.6.post1-cp313-cp313-macosx_10_13_x86_64.whl.

File metadata

File hashes

Hashes for pyworld_prebuilt-0.3.6.post1-cp313-cp313-macosx_10_13_x86_64.whl
Algorithm Hash digest
SHA256 1a1da078071c79cd2cf28fee09baf865a09dfeb02c2167c4c3c5c4a4fe6c2069
MD5 eea01995b3f65eda1b8b58440baec42f
BLAKE2b-256 c1a71298751b07a407f8e5438905cfa04781a6b08bad6df8bba9450eee05b8f5

See more details on using hashes here.

File details

Details for the file pyworld_prebuilt-0.3.6.post1-cp313-cp313-macosx_10_13_universal2.whl.

File metadata

File hashes

Hashes for pyworld_prebuilt-0.3.6.post1-cp313-cp313-macosx_10_13_universal2.whl
Algorithm Hash digest
SHA256 8f158d23d75f90882d3d54381c48f09d58da66baa90ea71ed66b54b224c4503e
MD5 18729031bb0c74046073053e3079da9d
BLAKE2b-256 6816ec22fe8dcbede42bdbd4a2073940fa58241256657ffa2883b399837047da

See more details on using hashes here.

File details

Details for the file pyworld_prebuilt-0.3.6.post1-cp312-cp312-win_arm64.whl.

File metadata

File hashes

Hashes for pyworld_prebuilt-0.3.6.post1-cp312-cp312-win_arm64.whl
Algorithm Hash digest
SHA256 213bf08837435f5de1aeb7417610e87c906c543acc416c6ab145119d829068c6
MD5 7e0ad55f446f8e17af135f288373dd0f
BLAKE2b-256 7abd9b4a25dd7175d5b5b51af1683888edbc7e1d33542de5cd4b022d6f2a8e3f

See more details on using hashes here.

File details

Details for the file pyworld_prebuilt-0.3.6.post1-cp312-cp312-win_amd64.whl.

File metadata

File hashes

Hashes for pyworld_prebuilt-0.3.6.post1-cp312-cp312-win_amd64.whl
Algorithm Hash digest
SHA256 65edb69da8975beeee3a1df5e18e31ddd7b5b84703943be0b2f914a532fb11d1
MD5 b92422e36e1d141319c942e57f2675b1
BLAKE2b-256 2cd910317b9319a9625ba1b0285ac2c5d56f9a89cae322d541054a761aa483f1

See more details on using hashes here.

File details

Details for the file pyworld_prebuilt-0.3.6.post1-cp312-cp312-win32.whl.

File metadata

File hashes

Hashes for pyworld_prebuilt-0.3.6.post1-cp312-cp312-win32.whl
Algorithm Hash digest
SHA256 a6ca8e6bdcda01446b2c610457d255fdcf428672db844aa7dd11cd151844b810
MD5 ea45b28baefef12de95d4a3ee7923df4
BLAKE2b-256 e209fe3e54f3a800871bc9d6549018126f05e3273960769672c809525a74724b

See more details on using hashes here.

File details

Details for the file pyworld_prebuilt-0.3.6.post1-cp312-cp312-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for pyworld_prebuilt-0.3.6.post1-cp312-cp312-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 aa74f4e9ccfc07689f74ae3d4e67fe053edf11a04b5fce3af659c2c6d0236d7a
MD5 424c89464f63b6c1f2f5e95f6cdccc7c
BLAKE2b-256 6981706cb925d9b3d2c81f2c5655d582bd34bad592fd82cefae02ba7fa0e3d08

See more details on using hashes here.

File details

Details for the file pyworld_prebuilt-0.3.6.post1-cp312-cp312-manylinux_2_24_aarch64.manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for pyworld_prebuilt-0.3.6.post1-cp312-cp312-manylinux_2_24_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 f74f284fe4d1ecf29fbeba9f58312cb8452b6bbbb1dcc8f1ace1793c0ea88b06
MD5 8c970fb192b24a4be9e56553f87bb1df
BLAKE2b-256 ea7e3f8d6cf3503fb9500d64f8290ceda839490af2299a7cb884cfdc73ad5231

See more details on using hashes here.

File details

Details for the file pyworld_prebuilt-0.3.6.post1-cp312-cp312-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for pyworld_prebuilt-0.3.6.post1-cp312-cp312-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 dae779447c896e821dd74277962acb1e43c753375fe50774ef7d5fc20cf9fcb0
MD5 02ce4fb31816f053951aff9a57164cca
BLAKE2b-256 9b17b06717bc0b97cc1196627e097132cd38b163382fb3250e4731f184f38cd6

See more details on using hashes here.

File details

Details for the file pyworld_prebuilt-0.3.6.post1-cp312-cp312-macosx_10_13_x86_64.whl.

File metadata

File hashes

Hashes for pyworld_prebuilt-0.3.6.post1-cp312-cp312-macosx_10_13_x86_64.whl
Algorithm Hash digest
SHA256 50cf30d5f965d63f4ad35b5141b234a057f38fa498e3a4d355b29307bc72e0a2
MD5 88998ce2b008337c6b151320099eeb13
BLAKE2b-256 e3de89db291c20ba3b443eb29188885fbade4ff08b234a6e36dfe0155505fa9b

See more details on using hashes here.

File details

Details for the file pyworld_prebuilt-0.3.6.post1-cp312-cp312-macosx_10_13_universal2.whl.

File metadata

File hashes

Hashes for pyworld_prebuilt-0.3.6.post1-cp312-cp312-macosx_10_13_universal2.whl
Algorithm Hash digest
SHA256 326d9b928145c0d4988bf2d89c7cee62c5787e7e70bc810236b74836875c645b
MD5 820b79773b01d060de851cd8cc909db2
BLAKE2b-256 59167f3c45a1337d5a1dd1b1a688dfa48f898fe11b8d0f7fe58a0845a401a5b3

See more details on using hashes here.

File details

Details for the file pyworld_prebuilt-0.3.6.post1-cp311-cp311-win_arm64.whl.

File metadata

File hashes

Hashes for pyworld_prebuilt-0.3.6.post1-cp311-cp311-win_arm64.whl
Algorithm Hash digest
SHA256 48498edbd836f740b296eea6738f9b28f6e082b4bd8f71d18515b8a8678a2ea6
MD5 5d87a29bf2d5da4d9a458ef4fc1ed8d1
BLAKE2b-256 74c6f5f1435fff1a7a3fd0664b0036859e68f261a647350aaac56352bdf5f624

See more details on using hashes here.

File details

Details for the file pyworld_prebuilt-0.3.6.post1-cp311-cp311-win_amd64.whl.

File metadata

File hashes

Hashes for pyworld_prebuilt-0.3.6.post1-cp311-cp311-win_amd64.whl
Algorithm Hash digest
SHA256 045de90209a0c16603e6d149a8408b4304c342ce5c5ddde94e85b48fe8b99090
MD5 31280a47549398a5be5a80b60adfc799
BLAKE2b-256 40a304fbb301660e03860fefb85c4fb2e61916ac5a285e5febc8f3b749e0978b

See more details on using hashes here.

File details

Details for the file pyworld_prebuilt-0.3.6.post1-cp311-cp311-win32.whl.

File metadata

File hashes

Hashes for pyworld_prebuilt-0.3.6.post1-cp311-cp311-win32.whl
Algorithm Hash digest
SHA256 af745fc0d2f573bcceeeb7c6952db0f8de76d6bf1ecb4feca634089efe3b3c4b
MD5 d4e66f065b020c6175f9e6418471533f
BLAKE2b-256 bfd69fb87fd4a6f82055bec37a431b18cf79395e9718d2cc8615113e155dce70

See more details on using hashes here.

File details

Details for the file pyworld_prebuilt-0.3.6.post1-cp311-cp311-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for pyworld_prebuilt-0.3.6.post1-cp311-cp311-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 dd2faf3aab7e006ce06cf112710b45ca2cfbef1302e0173764e7f279b4c5ed5e
MD5 38608b7c733c762c80bbd0e89ca19f98
BLAKE2b-256 d418ec3213a0f332546dd9147e4c1dfac38ac629117bb6f1f5db03d005781ffb

See more details on using hashes here.

File details

Details for the file pyworld_prebuilt-0.3.6.post1-cp311-cp311-manylinux_2_24_aarch64.manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for pyworld_prebuilt-0.3.6.post1-cp311-cp311-manylinux_2_24_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 0158de90a55766c44bf0fd7d9d11b7b92b8f44755c09bfba93fd9505601c96e9
MD5 d9125ea747cb432a8e96929b7c177b16
BLAKE2b-256 006222402daea562be8bedf9f473599cf21d7c982f7b2fe2b640dbcf84687916

See more details on using hashes here.

File details

Details for the file pyworld_prebuilt-0.3.6.post1-cp311-cp311-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for pyworld_prebuilt-0.3.6.post1-cp311-cp311-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 7aac0283a8ac29462353f94787d0b85ddce26891bc01f287ee2287ad9091b114
MD5 069f44af98a967503bca01bf9e420353
BLAKE2b-256 6a23b5c237d678fbbbd2ef57e12d16608a96ee9063074c1d1c9ef4ea4948d2cf

See more details on using hashes here.

File details

Details for the file pyworld_prebuilt-0.3.6.post1-cp311-cp311-macosx_10_9_x86_64.whl.

File metadata

File hashes

Hashes for pyworld_prebuilt-0.3.6.post1-cp311-cp311-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 e10fecd7d2a12576d2914233083fa66f34d7f853106b5483e674403e036db855
MD5 46604e7e31e095ab3ccd3484f75c780a
BLAKE2b-256 bc02d54115c3dd3169ba1e9ab468c4f87cff30ca24206697fa0f43c76ed9ad0f

See more details on using hashes here.

File details

Details for the file pyworld_prebuilt-0.3.6.post1-cp311-cp311-macosx_10_9_universal2.whl.

File metadata

File hashes

Hashes for pyworld_prebuilt-0.3.6.post1-cp311-cp311-macosx_10_9_universal2.whl
Algorithm Hash digest
SHA256 ca6e5d6270601a192aa60f602b19f5b9abc9b8d590728cefd4ca5e2b93451289
MD5 94df8f4a27866a9728cc999088266f3e
BLAKE2b-256 9c4d399801701e3c37d11cc8554d9e66815d43b22bdf03dbb4c478f43abb9216

See more details on using hashes here.

File details

Details for the file pyworld_prebuilt-0.3.6.post1-cp310-cp310-win_arm64.whl.

File metadata

File hashes

Hashes for pyworld_prebuilt-0.3.6.post1-cp310-cp310-win_arm64.whl
Algorithm Hash digest
SHA256 651e6e87ec6529ea9d219b3ca329339fe3f0bf0c0f3692e64d0c9035db9a5aff
MD5 7fbf46b7da355a6159ef1c72057acdf5
BLAKE2b-256 9b36621255e3806c809e80e08e56d7bb9fa8d90710a36df1572bd62f8d66d192

See more details on using hashes here.

File details

Details for the file pyworld_prebuilt-0.3.6.post1-cp310-cp310-win_amd64.whl.

File metadata

File hashes

Hashes for pyworld_prebuilt-0.3.6.post1-cp310-cp310-win_amd64.whl
Algorithm Hash digest
SHA256 a45d9f454cbf010e7ade87f27faf59e8f0bb8376aa6027f8ba3ca0b7cbadfb04
MD5 19670b3c34f9fbe1e516d1a201447f36
BLAKE2b-256 692108cf3c80e5d61656b9e599d1db7da7de3f9eadd16460de21e7949415326e

See more details on using hashes here.

File details

Details for the file pyworld_prebuilt-0.3.6.post1-cp310-cp310-win32.whl.

File metadata

File hashes

Hashes for pyworld_prebuilt-0.3.6.post1-cp310-cp310-win32.whl
Algorithm Hash digest
SHA256 a89c7cb27274bc031c43437112efa0b93406a695729ae8cdbbe27d4bf4f1cd8c
MD5 39bc82fcfcdac96281087e643eb8af6b
BLAKE2b-256 fc1dbbff582e3b9f81952300bbb6d4b1eccd728c4468139d25d17f9031ed51b5

See more details on using hashes here.

File details

Details for the file pyworld_prebuilt-0.3.6.post1-cp310-cp310-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for pyworld_prebuilt-0.3.6.post1-cp310-cp310-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 28732290373d770b482853a65bb1d363ed24a88dc623d669c4b7e6086e7b80db
MD5 f1f6ed29af15099e6b41172a17b019f5
BLAKE2b-256 40488d2ad9c61240a773831e3991ba0da32febf4b971d48fcaec72feead89527

See more details on using hashes here.

File details

Details for the file pyworld_prebuilt-0.3.6.post1-cp310-cp310-manylinux_2_24_aarch64.manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for pyworld_prebuilt-0.3.6.post1-cp310-cp310-manylinux_2_24_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 f21a3d09df41ab55a55e12e196ec6dbb2e9971439300cdf5f1ba0e6dcb681edc
MD5 aa953e5fd62561858132528936e9e54c
BLAKE2b-256 91cfd35556b652435cc33b64b1343cbf61c9e924afb1845a7864c2d7c16e29e0

See more details on using hashes here.

File details

Details for the file pyworld_prebuilt-0.3.6.post1-cp310-cp310-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for pyworld_prebuilt-0.3.6.post1-cp310-cp310-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 3ad4de177bf8bb4266b40392349efa8d7dda5babfac7aff673695cbbecd06b85
MD5 c8581c144be9864d472a583a67d39d8b
BLAKE2b-256 0d503b7e865134f5eda715c94610cae33214245846902473e03da7ccaef91410

See more details on using hashes here.

File details

Details for the file pyworld_prebuilt-0.3.6.post1-cp310-cp310-macosx_10_9_x86_64.whl.

File metadata

File hashes

Hashes for pyworld_prebuilt-0.3.6.post1-cp310-cp310-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 f9ae7911cb9efcea00f77160577da0c505d951b6830734bece92d9506d58da43
MD5 3643662830befc487dc7610be38e06c7
BLAKE2b-256 a110eaf85d38ad33c419640f5c9581969c82e9c0fdd439e4e5321fedc589bc7d

See more details on using hashes here.

File details

Details for the file pyworld_prebuilt-0.3.6.post1-cp310-cp310-macosx_10_9_universal2.whl.

File metadata

File hashes

Hashes for pyworld_prebuilt-0.3.6.post1-cp310-cp310-macosx_10_9_universal2.whl
Algorithm Hash digest
SHA256 e2f589c218a1a1875931f3b689d2b33f8242da466ad7513ed1c031df03512461
MD5 731d9edc02e2f123116329de5fb80b23
BLAKE2b-256 55f9e11533ba2f473194be3f332871a1ff066a37192e27fb593f1651ae097698

See more details on using hashes here.

File details

Details for the file pyworld_prebuilt-0.3.6.post1-cp39-cp39-win_arm64.whl.

File metadata

File hashes

Hashes for pyworld_prebuilt-0.3.6.post1-cp39-cp39-win_arm64.whl
Algorithm Hash digest
SHA256 6beb5d2532d12eaa72c25574c2a60847cffad7537e4584d672bb2ea5770847fc
MD5 04bc5ab662fffb70c4889a846e639dec
BLAKE2b-256 789bcd30b7ce1e4703bb902ce677f339f7c8bacaa3f74611c17436584378a9e1

See more details on using hashes here.

File details

Details for the file pyworld_prebuilt-0.3.6.post1-cp39-cp39-win_amd64.whl.

File metadata

File hashes

Hashes for pyworld_prebuilt-0.3.6.post1-cp39-cp39-win_amd64.whl
Algorithm Hash digest
SHA256 a5abc7c4f96ac41d6977dae93acb1b3a518aeaa0158baedd7776d9497668ad0f
MD5 54a7661d3ff94242035a61d0debf60d9
BLAKE2b-256 eff60b77d4fa66bcea81d6a393ff65efdb6e9f49269316ca639d9285ce40e918

See more details on using hashes here.

File details

Details for the file pyworld_prebuilt-0.3.6.post1-cp39-cp39-win32.whl.

File metadata

File hashes

Hashes for pyworld_prebuilt-0.3.6.post1-cp39-cp39-win32.whl
Algorithm Hash digest
SHA256 3da721d8495febfd51b0645d7eef0e842a208735e36c8a5ab26d32adb8b8b256
MD5 0a01646d267f4500c37b524f42dd902d
BLAKE2b-256 6f2dd0d02209b69b47ef2b8bf3129fe4e10aff3989a3cddf5ac6de7eab6ebd09

See more details on using hashes here.

File details

Details for the file pyworld_prebuilt-0.3.6.post1-cp39-cp39-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for pyworld_prebuilt-0.3.6.post1-cp39-cp39-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 477dc8040ece90cb190bb29f178a61e03aa9fe1f3a5cfae839c788555414e758
MD5 f5ce008f66496d1e8ca89bf545650b1e
BLAKE2b-256 d57502b5c9541e63b36881a773088b240824e0d3befd583b5e8f19b95a035e01

See more details on using hashes here.

File details

Details for the file pyworld_prebuilt-0.3.6.post1-cp39-cp39-manylinux_2_24_aarch64.manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for pyworld_prebuilt-0.3.6.post1-cp39-cp39-manylinux_2_24_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 21eaa5f33b467ddd860cb698dec857e140350d423d9ff7eb5baa744cb5b1d464
MD5 7b55a77066d36c3b6b9962396d469069
BLAKE2b-256 2a64d626a3e694b144bc6c9bf4b6ad1ba7a66731ac8c22eb2463b0dfbf662eb4

See more details on using hashes here.

File details

Details for the file pyworld_prebuilt-0.3.6.post1-cp39-cp39-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for pyworld_prebuilt-0.3.6.post1-cp39-cp39-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 b1c489331134516c1388a5a722c3984e674e8ce60ce7b13dac6552caf567275f
MD5 a31af80e92b0c3c42108a6ca149dd01e
BLAKE2b-256 878c0901bcb9c3d5754a0f9dffceac61cb0355ee6ffa6f0213a2eccb3ba4aa68

See more details on using hashes here.

File details

Details for the file pyworld_prebuilt-0.3.6.post1-cp39-cp39-macosx_10_9_x86_64.whl.

File metadata

File hashes

Hashes for pyworld_prebuilt-0.3.6.post1-cp39-cp39-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 ff941a330b191e08a26f35415ee75b26ec0bc0ee8344ec621fc9133a90246d7d
MD5 46c8575d5c5985f75dfd3704857ff8ae
BLAKE2b-256 c85094adb97fec1bf96a4a0a291de5fe60d9faba840bdda3ac773ec819e35847

See more details on using hashes here.

File details

Details for the file pyworld_prebuilt-0.3.6.post1-cp39-cp39-macosx_10_9_universal2.whl.

File metadata

File hashes

Hashes for pyworld_prebuilt-0.3.6.post1-cp39-cp39-macosx_10_9_universal2.whl
Algorithm Hash digest
SHA256 cd3dc6eb6cf3d468e44797dd10ec41b0c999f04a191477a82fa9b5f705f4f21b
MD5 210d43be3c7fd36d28b5529b122f6b13
BLAKE2b-256 b27a44d3b0445e6fe460a08353a054d857eec7869a606d8fcc2406b8b91f29a1

See more details on using hashes here.

Release history Release notifications | RSS feed

This release

0.3.6.post1 This release

73 files

0.3.5.post2

57 files

0.3.5.post1

48 files

0.3.4.4

48 files

0.3.4.3

48 files

0.3.4.2

48 files

0.3.4.1

41 files

0.3.4

41 files

Anthropic, PBC Visionary sponsor Bloomberg Visionary sponsor Hudson River Trading Visionary sponsor Meta Visionary sponsor NVIDIA Visionary sponsor Microsoft Sustainability sponsor Depot Continuous Integration AWS Cloud computing and Security Sponsor Datadog Monitoring Fastly CDN Google Download Analytics Sentry Error logging StatusPage Status page