Skip to main content

Pymunk is a easy-to-use pythonic 2D physics library

Project description

https://raw.githubusercontent.com/viblo/pymunk/master/docs/src/_static/pymunk_logo_animation.gif

Pymunk is an easy-to-use pythonic 2D physics library that can be used whenever you need 2D rigid body physics from Python. Perfect when you need 2D physics in your game, demo or simulation! It is built on top of Munk2D, a fork of the very capable 2D physics library Chipmunk2D.

The first version was released in 2007 and Pymunk is still actively developed and maintained today, more than 15 years of active development!

Pymunk has been used with success in many projects, big and small. For example: 3 Pyweek game competition winners, dozens of published scientific papers and even in a self-driving car simulation! See the Showcases section on the Pymunk webpage for some examples.

2007 - 2025, Victor Blomqvist - vb@viblo.se, MIT License

This release is based on the latest Pymunk release (7.2.0), using Munk2D 2.0.1 rev ade7ed72849e60289eefb7a41e79ae6322fefaf3.

Installation

In the normal case Pymunk can be installed from PyPI with pip:

> pip install pymunk

It has one direct dependency, CFFI.

Pymunk can also be installed with conda, from the conda-forge channel:

> conda install -c conda-forge pymunk

For more detailed installation instructions, please see the complete Pymunk documentation.

Example

Quick code example:

import pymunk               # Import pymunk..

space = pymunk.Space()      # Create a Space which contain the simulation
space.gravity = 0,-981      # Set its gravity

body = pymunk.Body()        # Create a Body
body.position = 50,100      # Set the position of the body

poly = pymunk.Poly.create_box(body) # Create a box shape and attach to body
poly.mass = 10              # Set the mass on the shape
space.add(body, poly)       # Add both body and shape to the simulation

print_options = pymunk.SpaceDebugDrawOptions() # For easy printing

for _ in range(100):        # Run simulation 100 steps in total
    space.step(0.02)        # Step the simulation one step forward
    space.debug_draw(print_options) # Print the state of the simulation

This will print (to console) the state of the simulation. For more visual, detailed and advanced examples, take a look at the included demos. They are included in the Pymunk install, in the pymunk.examples subpackage. They can be run directly. To list the examples:

> python -m pymunk.examples -l

And to run one of them:

> python -m pymunk.examples.index_video

Contact & Support

Homepage

http://www.pymunk.org/

Stackoverflow

You can ask questions/browse old ones at Stackoverflow, just look for the Pymunk tag. http://stackoverflow.com/questions/tagged/pymunk

E-Mail

You can email me directly at vb@viblo.se

Issue Tracker

Please use the issue tracker at Github to report any issues you find. This is also the place for feature requests: https://github.com/viblo/pymunk/issues

Regardless of the method you use I will try to answer your questions as soon as I see them. (And if you ask on Stackoverflow other people might help as well!)

Documentation

The full documentation including API reference, showcase of usages and screenshots of examples is available on the Pymunk homepage, http://www.pymunk.org

The Pymunk Vision

Make 2D physics easy to include in your game

It is (or is striving to be):

  • Easy to use - It should be easy to use, no complicated code should be needed to add physics to your game or program.

  • “Pythonic” - It should not be visible that a c-library (Chipmunk) is in the bottom, it should feel like a Python library (no strange naming, OO, no memory handling and more)

  • Simple to build & install - You shouldn’t need to have a zillion of libraries installed to make it install, or do a lot of command line tricks.

  • Multi-platform - Should work on both Windows, *nix and OSX.

  • Non-intrusive - It should not put restrictions on how you structure your program and not force you to use a special game loop, it should be possible to use with other libraries like Pygame and Pyglet.

Dependencies / Requirements

Basically Pymunk have been made to be as easy to install and distribute as possible, usually pip install will take care of everything for you.

  • Python (Runs on CPython 3.9 and later and Pypy3)

  • Chipmunk (Prebuilt and included when using binary wheels)

  • CFFI (will be installed automatically by Pip)

  • Setuptools (should be included with Pip)

  • GCC and friends (optional, you need it to compile Pymunk from source. On windows Visual Studio is required to compile)

  • Pygame or Pygame-CE (optional, you need it to run the Pygame based demos)

  • Pyglet (optional, you need it to run the Pyglet based demos)

  • Matplotlib & Jupyter Notebook (optional, you need it to run the Matplotlib based demos)

  • Numpy (optional, you need to it run a few demos)

  • Sphinx & aafigure & sphinx_autodoc_typehints (optional, you need it to build documentation)

Older Pythons

  • Support for Python 2 (and Python 3.0 - 3.5) was dropped with Pymunk 6.0.

  • Support for Python 3.6 was dropped with Pymunk 6.5.2.

  • Support for Python 3.7 was dropped with Pymunk 6.9.0.

  • Support for Python 3.8 was dropped with Pymunk 7.0.0.

If you use any of these legacy versions of Python, please use an older Pymunk version. It might work on newer Pymunks as well, but it’s not tested, and no wheels are built.

Project details


Download files

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

Source Distribution

pymunk-7.3.0.tar.gz (3.6 MB view details)

Uploaded Source

Built Distributions

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

pymunk-7.3.0-pp311-pypy311_pp73-win_amd64.whl (309.4 kB view details)

Uploaded PyPyWindows x86-64

pymunk-7.3.0-pp311-pypy311_pp73-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl (324.7 kB view details)

Uploaded PyPymanylinux: glibc 2.17+ x86-64manylinux: glibc 2.28+ x86-64

pymunk-7.3.0-pp311-pypy311_pp73-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl (319.4 kB view details)

Uploaded PyPymanylinux: glibc 2.17+ ARM64manylinux: glibc 2.28+ ARM64

pymunk-7.3.0-pp311-pypy311_pp73-macosx_11_0_arm64.whl (285.8 kB view details)

Uploaded PyPymacOS 11.0+ ARM64

pymunk-7.3.0-pp311-pypy311_pp73-macosx_10_15_x86_64.whl (294.3 kB view details)

Uploaded PyPymacOS 10.15+ x86-64

pymunk-7.3.0-cp314-cp314t-win_amd64.whl (375.8 kB view details)

Uploaded CPython 3.14tWindows x86-64

pymunk-7.3.0-cp314-cp314t-win32.whl (322.8 kB view details)

Uploaded CPython 3.14tWindows x86

pymunk-7.3.0-cp314-cp314t-musllinux_1_2_x86_64.whl (1.0 MB view details)

Uploaded CPython 3.14tmusllinux: musl 1.2+ x86-64

pymunk-7.3.0-cp314-cp314t-musllinux_1_2_aarch64.whl (1.0 MB view details)

Uploaded CPython 3.14tmusllinux: musl 1.2+ ARM64

pymunk-7.3.0-cp314-cp314t-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl (1.0 MB view details)

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

pymunk-7.3.0-cp314-cp314t-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl (1.0 MB view details)

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

pymunk-7.3.0-cp314-cp314t-macosx_11_0_arm64.whl (351.4 kB view details)

Uploaded CPython 3.14tmacOS 11.0+ ARM64

pymunk-7.3.0-cp314-cp314t-macosx_10_15_x86_64.whl (371.9 kB view details)

Uploaded CPython 3.14tmacOS 10.15+ x86-64

pymunk-7.3.0-cp314-cp314-win_amd64.whl (374.9 kB view details)

Uploaded CPython 3.14Windows x86-64

pymunk-7.3.0-cp314-cp314-win32.whl (321.6 kB view details)

Uploaded CPython 3.14Windows x86

pymunk-7.3.0-cp314-cp314-pyemscripten_2026_0_wasm32.whl (217.9 kB view details)

Uploaded CPython 3.14PyEmscripten 2026.0 wasm32

pymunk-7.3.0-cp314-cp314-musllinux_1_2_x86_64.whl (1.0 MB view details)

Uploaded CPython 3.14musllinux: musl 1.2+ x86-64

pymunk-7.3.0-cp314-cp314-musllinux_1_2_aarch64.whl (982.3 kB view details)

Uploaded CPython 3.14musllinux: musl 1.2+ ARM64

pymunk-7.3.0-cp314-cp314-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl (1.0 MB view details)

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

pymunk-7.3.0-cp314-cp314-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl (984.7 kB view details)

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

pymunk-7.3.0-cp314-cp314-macosx_11_0_arm64.whl (350.9 kB view details)

Uploaded CPython 3.14macOS 11.0+ ARM64

pymunk-7.3.0-cp314-cp314-macosx_10_15_x86_64.whl (371.1 kB view details)

Uploaded CPython 3.14macOS 10.15+ x86-64

pymunk-7.3.0-cp313-cp313-win_amd64.whl (370.5 kB view details)

Uploaded CPython 3.13Windows x86-64

pymunk-7.3.0-cp313-cp313-win32.whl (317.9 kB view details)

Uploaded CPython 3.13Windows x86

pymunk-7.3.0-cp313-cp313-pyemscripten_2025_0_wasm32.whl (218.0 kB view details)

Uploaded CPython 3.13PyEmscripten 2025.0 wasm32

pymunk-7.3.0-cp313-cp313-musllinux_1_2_x86_64.whl (1.0 MB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ x86-64

pymunk-7.3.0-cp313-cp313-musllinux_1_2_aarch64.whl (983.9 kB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ ARM64

pymunk-7.3.0-cp313-cp313-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl (1.0 MB view details)

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

pymunk-7.3.0-cp313-cp313-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl (986.5 kB view details)

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

pymunk-7.3.0-cp313-cp313-macosx_11_0_arm64.whl (351.0 kB view details)

Uploaded CPython 3.13macOS 11.0+ ARM64

pymunk-7.3.0-cp313-cp313-macosx_10_13_x86_64.whl (369.5 kB view details)

Uploaded CPython 3.13macOS 10.13+ x86-64

pymunk-7.3.0-cp313-cp313-ios_13_0_x86_64_iphonesimulator.whl (309.9 kB view details)

Uploaded CPython 3.13iOS 13.0+ x86-64 Simulator

pymunk-7.3.0-cp313-cp313-ios_13_0_arm64_iphonesimulator.whl (289.5 kB view details)

Uploaded CPython 3.13iOS 13.0+ ARM64 Simulator

pymunk-7.3.0-cp313-cp313-ios_13_0_arm64_iphoneos.whl (285.6 kB view details)

Uploaded CPython 3.13iOS 13.0+ ARM64 Device

pymunk-7.3.0-cp312-cp312-win_amd64.whl (370.5 kB view details)

Uploaded CPython 3.12Windows x86-64

pymunk-7.3.0-cp312-cp312-win32.whl (317.9 kB view details)

Uploaded CPython 3.12Windows x86

pymunk-7.3.0-cp312-cp312-musllinux_1_2_x86_64.whl (1.0 MB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ x86-64

pymunk-7.3.0-cp312-cp312-musllinux_1_2_aarch64.whl (983.9 kB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ ARM64

pymunk-7.3.0-cp312-cp312-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl (1.0 MB view details)

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

pymunk-7.3.0-cp312-cp312-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl (986.5 kB view details)

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

pymunk-7.3.0-cp312-cp312-macosx_11_0_arm64.whl (351.0 kB view details)

Uploaded CPython 3.12macOS 11.0+ ARM64

pymunk-7.3.0-cp312-cp312-macosx_10_13_x86_64.whl (369.5 kB view details)

Uploaded CPython 3.12macOS 10.13+ x86-64

pymunk-7.3.0-cp311-cp311-win_amd64.whl (370.3 kB view details)

Uploaded CPython 3.11Windows x86-64

pymunk-7.3.0-cp311-cp311-win32.whl (317.8 kB view details)

Uploaded CPython 3.11Windows x86

pymunk-7.3.0-cp311-cp311-musllinux_1_2_x86_64.whl (1.0 MB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ x86-64

pymunk-7.3.0-cp311-cp311-musllinux_1_2_aarch64.whl (981.0 kB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ ARM64

pymunk-7.3.0-cp311-cp311-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl (1.0 MB view details)

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

pymunk-7.3.0-cp311-cp311-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl (983.1 kB view details)

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

pymunk-7.3.0-cp311-cp311-macosx_11_0_arm64.whl (350.9 kB view details)

Uploaded CPython 3.11macOS 11.0+ ARM64

pymunk-7.3.0-cp311-cp311-macosx_10_9_x86_64.whl (369.1 kB view details)

Uploaded CPython 3.11macOS 10.9+ x86-64

pymunk-7.3.0-cp310-cp310-win_amd64.whl (370.3 kB view details)

Uploaded CPython 3.10Windows x86-64

pymunk-7.3.0-cp310-cp310-win32.whl (317.8 kB view details)

Uploaded CPython 3.10Windows x86

pymunk-7.3.0-cp310-cp310-musllinux_1_2_x86_64.whl (1.0 MB view details)

Uploaded CPython 3.10musllinux: musl 1.2+ x86-64

pymunk-7.3.0-cp310-cp310-musllinux_1_2_aarch64.whl (981.0 kB view details)

Uploaded CPython 3.10musllinux: musl 1.2+ ARM64

pymunk-7.3.0-cp310-cp310-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl (1.0 MB view details)

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

pymunk-7.3.0-cp310-cp310-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl (983.1 kB view details)

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

pymunk-7.3.0-cp310-cp310-macosx_11_0_arm64.whl (350.9 kB view details)

Uploaded CPython 3.10macOS 11.0+ ARM64

pymunk-7.3.0-cp310-cp310-macosx_10_9_x86_64.whl (369.1 kB view details)

Uploaded CPython 3.10macOS 10.9+ x86-64

pymunk-7.3.0-cp39-cp39-win_amd64.whl (370.3 kB view details)

Uploaded CPython 3.9Windows x86-64

pymunk-7.3.0-cp39-cp39-win32.whl (317.8 kB view details)

Uploaded CPython 3.9Windows x86

pymunk-7.3.0-cp39-cp39-musllinux_1_2_x86_64.whl (1.0 MB view details)

Uploaded CPython 3.9musllinux: musl 1.2+ x86-64

pymunk-7.3.0-cp39-cp39-musllinux_1_2_aarch64.whl (981.0 kB view details)

Uploaded CPython 3.9musllinux: musl 1.2+ ARM64

pymunk-7.3.0-cp39-cp39-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl (1.0 MB view details)

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

pymunk-7.3.0-cp39-cp39-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl (983.1 kB view details)

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

pymunk-7.3.0-cp39-cp39-macosx_11_0_arm64.whl (350.9 kB view details)

Uploaded CPython 3.9macOS 11.0+ ARM64

pymunk-7.3.0-cp39-cp39-macosx_10_9_x86_64.whl (369.1 kB view details)

Uploaded CPython 3.9macOS 10.9+ x86-64

File details

Details for the file pymunk-7.3.0.tar.gz.

File metadata

  • Download URL: pymunk-7.3.0.tar.gz
  • Upload date:
  • Size: 3.6 MB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/6.2.0 CPython/3.12.3

File hashes

Hashes for pymunk-7.3.0.tar.gz
Algorithm Hash digest
SHA256 11de74fdce68f47514c2e6e58ef5502a0bb68ba1c3c77e4e359baa466e9d4c16
MD5 d232fe92d925e0b0de1ab569f77dd7c0
BLAKE2b-256 e328988198dded8d0c9efcd872dd5bafa5e25654f29f500a4601c4c6fcb5b379

See more details on using hashes here.

File details

Details for the file pymunk-7.3.0-pp311-pypy311_pp73-win_amd64.whl.

File metadata

File hashes

Hashes for pymunk-7.3.0-pp311-pypy311_pp73-win_amd64.whl
Algorithm Hash digest
SHA256 aa54beaa18d05b719b88c31cef1123e02838ffce7cebb99b02b0fc236f3f20e8
MD5 7df5b144df09a43f1571d6d36d352343
BLAKE2b-256 4f28d4a87ee217c41318830eb682b411b5862f30dc22eb85da6b71bb9bfcb868

See more details on using hashes here.

File details

Details for the file pymunk-7.3.0-pp311-pypy311_pp73-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for pymunk-7.3.0-pp311-pypy311_pp73-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 652e2f957bba78f65e1fb83c270010396ca362a4ee57985f4b73f6159c4c9fbd
MD5 db7df2dee730b73af9538b98fe420993
BLAKE2b-256 60ffd610dbcf0a987f1db4b4025dcdcd2c8a2de3ae2c97aff98479256b935dfb

See more details on using hashes here.

File details

Details for the file pymunk-7.3.0-pp311-pypy311_pp73-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for pymunk-7.3.0-pp311-pypy311_pp73-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 4fa7fc7277e26a0a0e6923e70662ed8b11a4b99f378ecf089f506d9cd06122e4
MD5 fe45abf74ea3037f05c5a22cf8c3584c
BLAKE2b-256 ffb23c27118c4bc13c2ab92b4ae6112206c8e23d6c74af2550d9055e0e55134a

See more details on using hashes here.

File details

Details for the file pymunk-7.3.0-pp311-pypy311_pp73-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for pymunk-7.3.0-pp311-pypy311_pp73-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 606a36ebdf17f5a0450c0ae1e7ed98728cd08320a866e9d6d7382880a3580a23
MD5 4672cd32c3b468347e550aa0127e561b
BLAKE2b-256 162de614e566ae01cc9545481828393393142f42e5d09fa9c16622887ed88ca5

See more details on using hashes here.

File details

Details for the file pymunk-7.3.0-pp311-pypy311_pp73-macosx_10_15_x86_64.whl.

File metadata

File hashes

Hashes for pymunk-7.3.0-pp311-pypy311_pp73-macosx_10_15_x86_64.whl
Algorithm Hash digest
SHA256 b86b27266d9a11a5f2fb23cdd8917b2d3df92550cbd9fedcb8d3648616bd9b32
MD5 0a7bcc3a8f05d6afe5fae0ded4fa589d
BLAKE2b-256 122690f2d9f0da41df86f0a0723a233725abeef93939cc02b1a1ad1bb9805827

See more details on using hashes here.

File details

Details for the file pymunk-7.3.0-cp314-cp314t-win_amd64.whl.

File metadata

  • Download URL: pymunk-7.3.0-cp314-cp314t-win_amd64.whl
  • Upload date:
  • Size: 375.8 kB
  • Tags: CPython 3.14t, Windows x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/6.2.0 CPython/3.12.3

File hashes

Hashes for pymunk-7.3.0-cp314-cp314t-win_amd64.whl
Algorithm Hash digest
SHA256 37ec55fae684f8690b8e112ceb20cda5deb9291c2cbfd8ec2760a8d2926fec22
MD5 e71de944ccd1114bb89282677dfa465c
BLAKE2b-256 19cf4670ae13e2cb8cb5fcb0719817ea39963cf40ca011f3b01c5139a8096676

See more details on using hashes here.

File details

Details for the file pymunk-7.3.0-cp314-cp314t-win32.whl.

File metadata

  • Download URL: pymunk-7.3.0-cp314-cp314t-win32.whl
  • Upload date:
  • Size: 322.8 kB
  • Tags: CPython 3.14t, Windows x86
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/6.2.0 CPython/3.12.3

File hashes

Hashes for pymunk-7.3.0-cp314-cp314t-win32.whl
Algorithm Hash digest
SHA256 296561287949dafbdccca038a3dd1d7a6b8d5c79dc3b2c7ce72d1a2d2f7ef3fe
MD5 8556516f36e98e022e6bb73e2d6faa96
BLAKE2b-256 d17e64e860830ea5a17bdac182ebc76106da8f91662b39228038cd70a3f4fb89

See more details on using hashes here.

File details

Details for the file pymunk-7.3.0-cp314-cp314t-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for pymunk-7.3.0-cp314-cp314t-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 0aae14da488b5fd6f7f5d70c3e4d21a8a576476515af6159106001fbc74d8de0
MD5 fe5db14bdc912f832555e3de665c964a
BLAKE2b-256 f35fb07fb6495b647f8558b657ecde92bab197f2ae57b80ab8c11899c185f045

See more details on using hashes here.

File details

Details for the file pymunk-7.3.0-cp314-cp314t-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for pymunk-7.3.0-cp314-cp314t-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 1d0373bb807e11a5bf98eb6ede2c281ca47b4bee579a249762ea58c58d0b89fb
MD5 cbf85b4a7971d8e3afce52b141e8952f
BLAKE2b-256 2f7141103cbf51464a3d10752b7225788fd6591a091d549bf3911458ab902590

See more details on using hashes here.

File details

Details for the file pymunk-7.3.0-cp314-cp314t-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for pymunk-7.3.0-cp314-cp314t-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 9b953e19bda5b67a936ad351aad80ff91a18b78fcdbe5ba11f90d446ec1c9e12
MD5 d806a4790cd6efa1cc8cf593e12286c8
BLAKE2b-256 ba585d9498b05408290af484f315228659d672562fca4a129dc192213eabde04

See more details on using hashes here.

File details

Details for the file pymunk-7.3.0-cp314-cp314t-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for pymunk-7.3.0-cp314-cp314t-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 cf567f1fc9742007992874e2580ddc766a810d8d3390bc760e3eb33f838bf0c3
MD5 928ac589524ccf69edc1820566405ccd
BLAKE2b-256 0153c16e23df2f74633538a066b4208a0fe15e8f6c330d590fe9c5036699c215

See more details on using hashes here.

File details

Details for the file pymunk-7.3.0-cp314-cp314t-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for pymunk-7.3.0-cp314-cp314t-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 3a9e4efdb07a8d6f49386a5faf1d3f8d99dae84fb8b21b64ddeb82509f675a8b
MD5 16305491dc44ff8f0414b9e9af0bb263
BLAKE2b-256 ffd99826bf3d26c6f5ac1872e52a22d06a5012923e56f1f6620625913c2a3fe8

See more details on using hashes here.

File details

Details for the file pymunk-7.3.0-cp314-cp314t-macosx_10_15_x86_64.whl.

File metadata

File hashes

Hashes for pymunk-7.3.0-cp314-cp314t-macosx_10_15_x86_64.whl
Algorithm Hash digest
SHA256 3b78b9224f6d6de596ab9ab9216ed67e5505a4c76ad00b0a0cc0180b88923ac8
MD5 0c3f598493beb16a892bf9afa5855e27
BLAKE2b-256 7e6d8f9fcae451a63bc487fdf1f233faf30fa6959f43db57f0e8d9153e44e9a4

See more details on using hashes here.

File details

Details for the file pymunk-7.3.0-cp314-cp314-win_amd64.whl.

File metadata

  • Download URL: pymunk-7.3.0-cp314-cp314-win_amd64.whl
  • Upload date:
  • Size: 374.9 kB
  • Tags: CPython 3.14, Windows x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/6.2.0 CPython/3.12.3

File hashes

Hashes for pymunk-7.3.0-cp314-cp314-win_amd64.whl
Algorithm Hash digest
SHA256 31ec95a3b6901b1f1eba2e6324746d832d4b0853f907b64920bc626de6eef1f5
MD5 17d9d91dc8a249cf796e013b5b25576a
BLAKE2b-256 e371f82a01d96c00be36e916afb50b380069b9da09750a983dd0017cc3a62fb5

See more details on using hashes here.

File details

Details for the file pymunk-7.3.0-cp314-cp314-win32.whl.

File metadata

  • Download URL: pymunk-7.3.0-cp314-cp314-win32.whl
  • Upload date:
  • Size: 321.6 kB
  • Tags: CPython 3.14, Windows x86
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/6.2.0 CPython/3.12.3

File hashes

Hashes for pymunk-7.3.0-cp314-cp314-win32.whl
Algorithm Hash digest
SHA256 9c34f3ecc18cb57420d01ae7c7e06ee82a506314e2132d62beb4519d1f9f62db
MD5 7bf3cb4c2fcb90f3d5ea8a39174a5224
BLAKE2b-256 bd96d139dd2ca2a2259259b09ba1105e35de44232cb1ba2e40333732a1025efc

See more details on using hashes here.

File details

Details for the file pymunk-7.3.0-cp314-cp314-pyemscripten_2026_0_wasm32.whl.

File metadata

File hashes

Hashes for pymunk-7.3.0-cp314-cp314-pyemscripten_2026_0_wasm32.whl
Algorithm Hash digest
SHA256 0fb2033501ea10e65cad23f93e9ec7c780ebb95aa404404b01a24c4e595f78d3
MD5 ec4ceb860f86b555e6d59b868c1510d5
BLAKE2b-256 74ee9b6ebc6348ecfb117bf5de43fcc521cff38e25f54bce6d25ea9eff3fc4b9

See more details on using hashes here.

File details

Details for the file pymunk-7.3.0-cp314-cp314-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for pymunk-7.3.0-cp314-cp314-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 d98e1cd515cfb433d55b2b69e413ae69efabc6729ece210ba02e07a865b74870
MD5 96112093e4326d4c03639a4bd828aedd
BLAKE2b-256 0aa1b6609005bad223ffbb832d1fd112528095fded382366b11fa63dc9d7a52c

See more details on using hashes here.

File details

Details for the file pymunk-7.3.0-cp314-cp314-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for pymunk-7.3.0-cp314-cp314-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 f1c4d3a93ed69423d0fd995606d41c051cff6e3a87b8fad58c63e86a06bd5d85
MD5 4c75428efb891fda0162adf076776b4c
BLAKE2b-256 de6996e296a59a2e744f5f0bd87c7b20853b9db88a88b69bdee51240506b3354

See more details on using hashes here.

File details

Details for the file pymunk-7.3.0-cp314-cp314-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for pymunk-7.3.0-cp314-cp314-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 cbeaca2763db52220728c60532afd2883bbf13115e8c6697af71546cb1863db4
MD5 833a551bb94250dd8f792ffc6eee750f
BLAKE2b-256 49c1bdcf3698363d7c319262f762ad0220c20b0eccf0979a25822117b36615a9

See more details on using hashes here.

File details

Details for the file pymunk-7.3.0-cp314-cp314-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for pymunk-7.3.0-cp314-cp314-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 9feea064d91b9b0dc3d50dd986e4176c579ac58697ded4f1b618fcb2a90eb8e6
MD5 4405380c9ac77cfbc28e917a51fd7392
BLAKE2b-256 253858a525b873c12d0cf83389702086c8206186a4322b3d4faf6b8380eaf6db

See more details on using hashes here.

File details

Details for the file pymunk-7.3.0-cp314-cp314-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for pymunk-7.3.0-cp314-cp314-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 d487e49a845c75c596c9fc76c542d8d9ce60d239b879a5094f82ba1fecdb5c88
MD5 7614dc5162ed0ff7c3a164f751330dd4
BLAKE2b-256 57277aeaebf2cd7e2b30f1a0d4a4e6a295b57ba10656f0810f946e55833806cb

See more details on using hashes here.

File details

Details for the file pymunk-7.3.0-cp314-cp314-macosx_10_15_x86_64.whl.

File metadata

File hashes

Hashes for pymunk-7.3.0-cp314-cp314-macosx_10_15_x86_64.whl
Algorithm Hash digest
SHA256 07503037172b352134f4da3398476e20d905173c0f760063853960a4c766c04b
MD5 6aca452c313c3628beae11fc22104602
BLAKE2b-256 2089dfa5462e2a357916a0af58f65fe2ace8418b01cfabe91e78c830495abcc3

See more details on using hashes here.

File details

Details for the file pymunk-7.3.0-cp313-cp313-win_amd64.whl.

File metadata

  • Download URL: pymunk-7.3.0-cp313-cp313-win_amd64.whl
  • Upload date:
  • Size: 370.5 kB
  • Tags: CPython 3.13, Windows x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/6.2.0 CPython/3.12.3

File hashes

Hashes for pymunk-7.3.0-cp313-cp313-win_amd64.whl
Algorithm Hash digest
SHA256 8848fb6fb980d8d2391eadf1dd1e12ae71ec5f175a01c612988af650c9d11345
MD5 bfe6bbaf526811bda809a899b474a561
BLAKE2b-256 495bd1c1f480b652fbcbca4ea7db288dc10d79208f1c15778e8e1d52b6df1d78

See more details on using hashes here.

File details

Details for the file pymunk-7.3.0-cp313-cp313-win32.whl.

File metadata

  • Download URL: pymunk-7.3.0-cp313-cp313-win32.whl
  • Upload date:
  • Size: 317.9 kB
  • Tags: CPython 3.13, Windows x86
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/6.2.0 CPython/3.12.3

File hashes

Hashes for pymunk-7.3.0-cp313-cp313-win32.whl
Algorithm Hash digest
SHA256 e277649e67b5ac76add3dc78837f4ef1ae660f8ad1bad3f9c3307174707c0220
MD5 68a89aa44648a337632e8fe4089bb477
BLAKE2b-256 9f190709e14b9b8bc1b62d353000e882a93296a2ef66ecfcebf1f7d331561169

See more details on using hashes here.

File details

Details for the file pymunk-7.3.0-cp313-cp313-pyemscripten_2025_0_wasm32.whl.

File metadata

File hashes

Hashes for pymunk-7.3.0-cp313-cp313-pyemscripten_2025_0_wasm32.whl
Algorithm Hash digest
SHA256 2905a3c714aab6e40d29e99ac96fe9a0717b87a44e3c4e30deea21529b5dbe68
MD5 536831d5dc163d7fe5243685e95a2e24
BLAKE2b-256 0a8bc4f281bd74622ef53d32303a9b6aa4d7f5045f3b8f209ac3e9b2fb299ac1

See more details on using hashes here.

File details

Details for the file pymunk-7.3.0-cp313-cp313-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for pymunk-7.3.0-cp313-cp313-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 d0bb32059d19df7817dcb54784b4292d99d7663766d06223d243904ace3015b7
MD5 13e3726eaeaeb9b6530a993b1dfb6276
BLAKE2b-256 a1f03fe57a197c24948174091f4b7f216e486626df4f1a6427b8cab58ef8e81a

See more details on using hashes here.

File details

Details for the file pymunk-7.3.0-cp313-cp313-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for pymunk-7.3.0-cp313-cp313-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 783fd6d405bd943f8c4efeb259a8ad5a9e65fc032a8c37f90e3bbebabbad66c1
MD5 faae5d889f531d63159e5e3d028dc483
BLAKE2b-256 72e262ce286390fbc148863518cdb50d9c651ef3da0858ca513efc92a714e869

See more details on using hashes here.

File details

Details for the file pymunk-7.3.0-cp313-cp313-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for pymunk-7.3.0-cp313-cp313-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 fc023793e159c48da8b5a1e29bf1d3bf70f4ac26edc94ce0aa952ec7c7705d33
MD5 a603fb3f06f2aaf6dc49d4426a471d39
BLAKE2b-256 38c5247d7bbda7578ae3722dc259d839ed843ed1925cf3d41607854d4221c4e3

See more details on using hashes here.

File details

Details for the file pymunk-7.3.0-cp313-cp313-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for pymunk-7.3.0-cp313-cp313-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 2b5aeafb515116e7c2af3db9b65178d3c8f66129d68f6fe8e50d5199790f09cf
MD5 bdc289cdca2ece1f99dec934015dbd6c
BLAKE2b-256 16f84d3598026731afb7ad1fe58cf44293597336f385e60b25ffdc1481a11868

See more details on using hashes here.

File details

Details for the file pymunk-7.3.0-cp313-cp313-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for pymunk-7.3.0-cp313-cp313-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 3a34f44a43187384a3ec9a2dcc81d343cc17a01223cbf29087cc512564e0fb4e
MD5 5b92910b32bd2e128782944d93d91e6a
BLAKE2b-256 fb80de63861e1c7103ccb00d2d2406e2a9ed9eb485197189bf7725ec475e0668

See more details on using hashes here.

File details

Details for the file pymunk-7.3.0-cp313-cp313-macosx_10_13_x86_64.whl.

File metadata

File hashes

Hashes for pymunk-7.3.0-cp313-cp313-macosx_10_13_x86_64.whl
Algorithm Hash digest
SHA256 c080f7f04bfd1e741a1c7bdf4bd594e67a0318c5707142e5afb06541dd383a2a
MD5 42df834d0b0d895b0634152922277b54
BLAKE2b-256 b81d008b3fea06650dabce6c000c81328d8beb5c7ce5d8df1ff0e554a25d944f

See more details on using hashes here.

File details

Details for the file pymunk-7.3.0-cp313-cp313-ios_13_0_x86_64_iphonesimulator.whl.

File metadata

File hashes

Hashes for pymunk-7.3.0-cp313-cp313-ios_13_0_x86_64_iphonesimulator.whl
Algorithm Hash digest
SHA256 8aaea23436a92fae1cdd6355468802acd12cca3dcd24b2d846532412970ff2f4
MD5 9cb04602924df9626c1ceab4809a178d
BLAKE2b-256 b68ae48b674d259a3514d4d664b7e64e3bc9d8d947934b334cc26e11affdfc9a

See more details on using hashes here.

File details

Details for the file pymunk-7.3.0-cp313-cp313-ios_13_0_arm64_iphonesimulator.whl.

File metadata

File hashes

Hashes for pymunk-7.3.0-cp313-cp313-ios_13_0_arm64_iphonesimulator.whl
Algorithm Hash digest
SHA256 51cf6723b0503e9a3a946aee9fb09023438ad274848ddcf7f295a991c6711cfe
MD5 7c2b4d595f0b6317e60933c564c83180
BLAKE2b-256 93f568da9b352fd56c203cd9772404a1000c132956b79b09813a91c07851f318

See more details on using hashes here.

File details

Details for the file pymunk-7.3.0-cp313-cp313-ios_13_0_arm64_iphoneos.whl.

File metadata

File hashes

Hashes for pymunk-7.3.0-cp313-cp313-ios_13_0_arm64_iphoneos.whl
Algorithm Hash digest
SHA256 f659faa0021168aeff9e635c9547564b6c66e83b70eaaa23e147e4eb0b923f39
MD5 0061ed7192cbc7f83bb4a581d2eeba51
BLAKE2b-256 8f74bd73e5f6396e1eb01a783cc3ff1f5ff429c07563d32e82eeb6eb24cccb2a

See more details on using hashes here.

File details

Details for the file pymunk-7.3.0-cp312-cp312-win_amd64.whl.

File metadata

  • Download URL: pymunk-7.3.0-cp312-cp312-win_amd64.whl
  • Upload date:
  • Size: 370.5 kB
  • Tags: CPython 3.12, Windows x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/6.2.0 CPython/3.12.3

File hashes

Hashes for pymunk-7.3.0-cp312-cp312-win_amd64.whl
Algorithm Hash digest
SHA256 146e5be2b7688b728516c65097590074c70cf684fcbe1b2593282cd79e728ba9
MD5 3bcbeae578f07f37f7e254fb603ccbba
BLAKE2b-256 ee7c62f0fc91c92468ecb6a3269b33937eb71dc7aedf9da1867bd973577b124f

See more details on using hashes here.

File details

Details for the file pymunk-7.3.0-cp312-cp312-win32.whl.

File metadata

  • Download URL: pymunk-7.3.0-cp312-cp312-win32.whl
  • Upload date:
  • Size: 317.9 kB
  • Tags: CPython 3.12, Windows x86
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/6.2.0 CPython/3.12.3

File hashes

Hashes for pymunk-7.3.0-cp312-cp312-win32.whl
Algorithm Hash digest
SHA256 9c0d3642da364aed1acffe32315baf7d4e347ba9a66a59bd5b9b23e295799218
MD5 e388dbcd697fc21c045827993912af17
BLAKE2b-256 239d40e3e18b3e2c4cd29ee4504d5d478dc0c9339722ad32382fb1f3ffe113d6

See more details on using hashes here.

File details

Details for the file pymunk-7.3.0-cp312-cp312-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for pymunk-7.3.0-cp312-cp312-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 235090ae8fbada8e3f272bb58000679bd13aef9366e7181f7dc96e407404c1b0
MD5 a6893c35f627812209c8aaab6b220fab
BLAKE2b-256 9c6b1539ace49b675c2a9baab00fe6d38d5be17c9d72fba1623aa51e4e1fd61e

See more details on using hashes here.

File details

Details for the file pymunk-7.3.0-cp312-cp312-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for pymunk-7.3.0-cp312-cp312-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 90e2a054c676988488597ecacdeb4b2de9dba21c20539c3c492a6aca51d1262e
MD5 cc51f4321a39ed32fa23d874211b5469
BLAKE2b-256 0adab1c7dea021e2269306cb123822899e81ab24ccf810002f6c590464fdfb20

See more details on using hashes here.

File details

Details for the file pymunk-7.3.0-cp312-cp312-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for pymunk-7.3.0-cp312-cp312-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 332e4a3cad0b3407838a9f86f3bdbb622e3f72cc821709cee917c473cb4787aa
MD5 6a93077a0266b95538329ddc49e87e8c
BLAKE2b-256 63e2730915525815c4a32629bf99b9d4e27546e4859b508596a2c86ed69a46d8

See more details on using hashes here.

File details

Details for the file pymunk-7.3.0-cp312-cp312-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for pymunk-7.3.0-cp312-cp312-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 0c03d50a45ede33a0b4b75ab4834e223cd07882d9e79d0a3aae2a8bd85ace123
MD5 992670486317909e434774d987b20541
BLAKE2b-256 7797abbd73c16cc07223c1d246169f405d2f3eb81c1b69a010d08e283bdd129c

See more details on using hashes here.

File details

Details for the file pymunk-7.3.0-cp312-cp312-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for pymunk-7.3.0-cp312-cp312-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 5423feb7df3083c13b0fdc60c1d20be567dbb19c0c0d15ffe208fd457bfd1383
MD5 e39f70ab595af968d87b1f4916a0bfb2
BLAKE2b-256 131b801e607d75b4b59d7282e973735cc3946c82492f773b4cb989ea98345c41

See more details on using hashes here.

File details

Details for the file pymunk-7.3.0-cp312-cp312-macosx_10_13_x86_64.whl.

File metadata

File hashes

Hashes for pymunk-7.3.0-cp312-cp312-macosx_10_13_x86_64.whl
Algorithm Hash digest
SHA256 ebf393a305fad8fc383383f4d3e93e2750fe663102f4c59e989479fdfb040159
MD5 d6ac27d272917a797ffcd36fc7c65857
BLAKE2b-256 9b12c03db9b316c895f0d2b0c957da93f21d4d27cafdd5a3a9af4beb7ba97234

See more details on using hashes here.

File details

Details for the file pymunk-7.3.0-cp311-cp311-win_amd64.whl.

File metadata

  • Download URL: pymunk-7.3.0-cp311-cp311-win_amd64.whl
  • Upload date:
  • Size: 370.3 kB
  • Tags: CPython 3.11, Windows x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/6.2.0 CPython/3.12.3

File hashes

Hashes for pymunk-7.3.0-cp311-cp311-win_amd64.whl
Algorithm Hash digest
SHA256 f559c0e698071bcf887a4e94920f7f13291985664fffe25b782619726e81dc73
MD5 6e8c0c39e12d592f9aa020dac6ead80e
BLAKE2b-256 d8ff1d71583247a96f62227961e311c85be17f1870adf9f0b7243865c3d929b0

See more details on using hashes here.

File details

Details for the file pymunk-7.3.0-cp311-cp311-win32.whl.

File metadata

  • Download URL: pymunk-7.3.0-cp311-cp311-win32.whl
  • Upload date:
  • Size: 317.8 kB
  • Tags: CPython 3.11, Windows x86
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/6.2.0 CPython/3.12.3

File hashes

Hashes for pymunk-7.3.0-cp311-cp311-win32.whl
Algorithm Hash digest
SHA256 634af7d3165d2fc99c7158c40d5feb9eaf4bf3ffca093bd13cc2d4b74b4b8c0b
MD5 1e66983184d25067d84af3cb72c3c289
BLAKE2b-256 cdc29a9993e61a1c9755311fc7737fd8bea0724c18133db0a8f3eb9690ae6734

See more details on using hashes here.

File details

Details for the file pymunk-7.3.0-cp311-cp311-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for pymunk-7.3.0-cp311-cp311-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 1d0f746499c82c96078038d315667ce9d792ef32e7249b2026d9fd5bf5778257
MD5 591d86f3d5e34b5a046672491420bf21
BLAKE2b-256 8eddf036664a0e7f5722ae383d5ac06112093c37806f76baf7e3c378602be626

See more details on using hashes here.

File details

Details for the file pymunk-7.3.0-cp311-cp311-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for pymunk-7.3.0-cp311-cp311-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 87878e638f325c45e93c2b1e79e9bdbc5725aaf5c165f5c2cacf02901fa919c7
MD5 3427caee5d20dc46e7a76a278b0f008a
BLAKE2b-256 d352f1880761659483a39e4be182de3fd63fe2df39ef597b8beb7225fb1f0386

See more details on using hashes here.

File details

Details for the file pymunk-7.3.0-cp311-cp311-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for pymunk-7.3.0-cp311-cp311-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 5287b73510332ab5950f3eb78160b505d23770d2830316692a4b29636210fc79
MD5 7c59664bb850595474a9fd0589a1cab2
BLAKE2b-256 bd3ea637e19a0aead6db618de48ba469ca5e55f65f594c456230e2a68b5d3c20

See more details on using hashes here.

File details

Details for the file pymunk-7.3.0-cp311-cp311-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for pymunk-7.3.0-cp311-cp311-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 5027d9c6bcaca0373558d3e952b477a9b140fbbfd73953b0d0899ae835b604dd
MD5 9c86672574d2c7ed0ab8c9090d6b15c7
BLAKE2b-256 9449741a811b83923ea807df608a6cd25916711e08e37c35856582cfeda7e115

See more details on using hashes here.

File details

Details for the file pymunk-7.3.0-cp311-cp311-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for pymunk-7.3.0-cp311-cp311-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 f89880cb3500add52cf70d7f2579ccf6349040bdeb75c13e86df01ea4ed613f4
MD5 3e56f8c93e7db1a42588c9964fa985a6
BLAKE2b-256 6966b9f0aafb1915c42f588c14051888214f051f97573dddbcf65e6cb91a3dc5

See more details on using hashes here.

File details

Details for the file pymunk-7.3.0-cp311-cp311-macosx_10_9_x86_64.whl.

File metadata

File hashes

Hashes for pymunk-7.3.0-cp311-cp311-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 692c119f3d25b51a72288afe3f89791f25676a78a5ccf271f91407eda4f6b05b
MD5 22184faabdd2b8fd5aa0413d0c08bf2a
BLAKE2b-256 9a84051eba929e9a2146e27887f1f9bca5d4ac07958a40bbff7db751186fbc60

See more details on using hashes here.

File details

Details for the file pymunk-7.3.0-cp310-cp310-win_amd64.whl.

File metadata

  • Download URL: pymunk-7.3.0-cp310-cp310-win_amd64.whl
  • Upload date:
  • Size: 370.3 kB
  • Tags: CPython 3.10, Windows x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/6.2.0 CPython/3.12.3

File hashes

Hashes for pymunk-7.3.0-cp310-cp310-win_amd64.whl
Algorithm Hash digest
SHA256 b8519df3c2b68e01e81a4aeee766d8dce1783c4e4444f0ac056e69789060eab7
MD5 cc1a444caa9af7f07f22124db29d0f99
BLAKE2b-256 271c6f1c9be3d9246959f9071e5ecffea0126c5a2501dd2de7af78ed48d9242f

See more details on using hashes here.

File details

Details for the file pymunk-7.3.0-cp310-cp310-win32.whl.

File metadata

  • Download URL: pymunk-7.3.0-cp310-cp310-win32.whl
  • Upload date:
  • Size: 317.8 kB
  • Tags: CPython 3.10, Windows x86
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/6.2.0 CPython/3.12.3

File hashes

Hashes for pymunk-7.3.0-cp310-cp310-win32.whl
Algorithm Hash digest
SHA256 4c6599afcef9e4ba7165d7cb50018bdd2e2ce35904207f57efdfb9bcd4448558
MD5 6974e482683f1ae8d4bb50ae1752e149
BLAKE2b-256 3ed9a5d667a6314136c5eebed61d48ccf5fecb0c85daf986f0ba911e97a4fa77

See more details on using hashes here.

File details

Details for the file pymunk-7.3.0-cp310-cp310-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for pymunk-7.3.0-cp310-cp310-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 ffac650f861795d8b2b54c1240d09c552d87aa8308fcbd43192aa1de0836fc39
MD5 017a7445e9bf748613bee0451834531b
BLAKE2b-256 53194b3c9415a75317ab9cca02a7a6228d295c4deb7995c5c220c2faf5c3912f

See more details on using hashes here.

File details

Details for the file pymunk-7.3.0-cp310-cp310-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for pymunk-7.3.0-cp310-cp310-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 0c80051617856df5ef78ec618ebb1ecb201e4ad21bc8bfd6e47cf079f1aac022
MD5 1bb6be7656f1454bfcebbba853d69038
BLAKE2b-256 5e303b20fc819eeab27959c9183d7cc70795a21f32b3cf2c4c63638d117e13e9

See more details on using hashes here.

File details

Details for the file pymunk-7.3.0-cp310-cp310-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for pymunk-7.3.0-cp310-cp310-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 888a444c96f53b53720d14d5f75445e90175b7622b0421a0ad143fb0451ce7fe
MD5 2a6833e465d7b073a7fac1b2dbbc6811
BLAKE2b-256 f17e6bb10dd3e5a19c197a8c91ac15100136531bb6e308830509babc96ebd739

See more details on using hashes here.

File details

Details for the file pymunk-7.3.0-cp310-cp310-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for pymunk-7.3.0-cp310-cp310-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 d5a617a088d892a3a427bbbf3519a4ed8b765682125a283e4024f63be3a19177
MD5 2a20e59c37bbaa63c1982b8de1bbb6d4
BLAKE2b-256 8e1731c5944aabf1980aac3dcfd2423b513bd5e183d8767a7118a48baeb2b447

See more details on using hashes here.

File details

Details for the file pymunk-7.3.0-cp310-cp310-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for pymunk-7.3.0-cp310-cp310-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 a18f3b712eecbcbd371fc8624af106b2a9545b4caece3eb189ff04a5503d657d
MD5 43170716aa410bbf80f3a3155ab0dba6
BLAKE2b-256 38ce8251cf41ff2d038b4cb72a2034405339c459f0ff8bbe8999dc3dbe1df482

See more details on using hashes here.

File details

Details for the file pymunk-7.3.0-cp310-cp310-macosx_10_9_x86_64.whl.

File metadata

File hashes

Hashes for pymunk-7.3.0-cp310-cp310-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 b8b47e32c4fb2c6dac3c4433a074b50afc9b193bfc3983848cb2c938af051b66
MD5 9c0908db2d5db921d7f61da2a3e6d73a
BLAKE2b-256 b0eb3f88e9595722d2fc606bbd0990cdc7e1bed3716d41f89f1c727c33030ad4

See more details on using hashes here.

File details

Details for the file pymunk-7.3.0-cp39-cp39-win_amd64.whl.

File metadata

  • Download URL: pymunk-7.3.0-cp39-cp39-win_amd64.whl
  • Upload date:
  • Size: 370.3 kB
  • Tags: CPython 3.9, Windows x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/6.2.0 CPython/3.12.3

File hashes

Hashes for pymunk-7.3.0-cp39-cp39-win_amd64.whl
Algorithm Hash digest
SHA256 2f7b15bd66cc19406baae52129ca03a4b6e39d6c68980fe98839781cc66c6759
MD5 419543024431637594506a5184497161
BLAKE2b-256 1bacbbf7bda207b5bd59534f5b62c0336ead6ac2acd1b548d9246543fc211171

See more details on using hashes here.

File details

Details for the file pymunk-7.3.0-cp39-cp39-win32.whl.

File metadata

  • Download URL: pymunk-7.3.0-cp39-cp39-win32.whl
  • Upload date:
  • Size: 317.8 kB
  • Tags: CPython 3.9, Windows x86
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/6.2.0 CPython/3.12.3

File hashes

Hashes for pymunk-7.3.0-cp39-cp39-win32.whl
Algorithm Hash digest
SHA256 6c97d9f5bce2f94efd75cce7f9392e03f0605980abf92f9f8a86f0f87861b776
MD5 26eef616cbefad7c763c9bf1da044050
BLAKE2b-256 19a66f9215e902fa4c05324f49f6c952ee7d99837694bf3154b7b09d4ddecf77

See more details on using hashes here.

File details

Details for the file pymunk-7.3.0-cp39-cp39-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for pymunk-7.3.0-cp39-cp39-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 c1f006ad5ade110b07950863ebe7c7341262d0dc8aaa332208f18b5baf800204
MD5 f150a89bf07a2e1cbc930dbfc0bf6234
BLAKE2b-256 ea96047d4142c759b373110166659346ebea9ec60c1292ba7fac6cae9f3b97e0

See more details on using hashes here.

File details

Details for the file pymunk-7.3.0-cp39-cp39-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for pymunk-7.3.0-cp39-cp39-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 1713591de05441036e2c9765acff4bf0b04d6946f1779f13c6f0d6e3254a1adf
MD5 46f2b270056ba094376bc8a2b4c731fa
BLAKE2b-256 7132f8540409d6a92ecc91284caf00cc3b0846bc9bd2e03e8c765e47fb4e3001

See more details on using hashes here.

File details

Details for the file pymunk-7.3.0-cp39-cp39-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for pymunk-7.3.0-cp39-cp39-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 05f0d92fcb28dfe7e7b3f15c06a7f11b4d934d4d2f96ff08e8354f1035036f5c
MD5 16ef890ebabfeac0ea443d56abec5759
BLAKE2b-256 7e6185a81351613d2a879a79d778cd43979c52c2612e0b42575260cc76e786d2

See more details on using hashes here.

File details

Details for the file pymunk-7.3.0-cp39-cp39-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for pymunk-7.3.0-cp39-cp39-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 52293f3c77ae92b3e2376c6fbc23489ee5f891f606e924f009a8de4579d6e8e2
MD5 2246601420c1a087c45b6d44f1ef2023
BLAKE2b-256 c24ac9f2ca9822c4b9fd7dee8eb141f4440a33462a7e0ef9ae7d08a5025c6131

See more details on using hashes here.

File details

Details for the file pymunk-7.3.0-cp39-cp39-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for pymunk-7.3.0-cp39-cp39-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 bc7e03d9a95cb0462dda03309e78448b449083488ddc36200bdebe23d76898ec
MD5 4210c0487475fbba316ca65c64cc3909
BLAKE2b-256 99afc10f6bbaaf727221c58aceab2fed875383e5dc87734c6ce659ade968b678

See more details on using hashes here.

File details

Details for the file pymunk-7.3.0-cp39-cp39-macosx_10_9_x86_64.whl.

File metadata

File hashes

Hashes for pymunk-7.3.0-cp39-cp39-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 1bf1ea75381fd7d171a5ab6747cf71547484f0e5a4fa3276ceb3cd5e12245b57
MD5 cf4b9abd360263b21ee622303ee0b43e
BLAKE2b-256 64bb217b1ff5cbdf5701a4a4d9351f77dc9490fab5cfc1f660858e592c48b8ef

See more details on using hashes here.

Supported by

AWS Cloud computing and Security Sponsor Datadog Monitoring Depot Continuous Integration Fastly CDN Google Download Analytics Pingdom Monitoring Sentry Error logging StatusPage Status page